41ffa05acfb317573d20e66ba9665916e664ddbe
[ric-plt/ric-dep.git] / helm / 3rdparty / influxdb / templates / NOTES.txt
1 InfluxDB can be accessed via port {{ .Values.config.http.bind_address | default 8086 }} on the following DNS name from within your cluster:
2
3   http://{{ include "influxdb.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.config.http.bind_address | default 8086 }}
4
5 You can connect to the remote instance with the influx CLI. To forward the API port to localhost:8086, run the following:
6
7   kubectl port-forward --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ include "influxdb.fullname" . }} -o jsonpath='{ .items[0].metadata.name }') 8086:{{ .Values.config.http.bind_address | default 8086 }}
8
9 You can also connect to the influx CLI from inside the container. To open a shell session in the InfluxDB pod, run the following:
10
11   kubectl exec -i -t --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ include "influxdb.fullname" . }} -o jsonpath='{.items[0].metadata.name}') /bin/sh
12
13 To view the logs for the InfluxDB pod, run the following:
14
15   kubectl logs -f --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ include "influxdb.fullname" . }} -o jsonpath='{ .items[0].metadata.name }')
16
17 {{- if .Values.setDefaultUser.enabled }}
18
19 To retrieve the default user name:
20
21 {{- if .Values.setDefaultUser.user.existingSecret }}
22
23   echo $(kubectl get secret {{ .Values.setDefaultUser.user.existingSecret }} -o "jsonpath={.data['influxdb-user']}" --namespace {{ .Release.Namespace }} | base64 --decode)
24
25 {{- else }}
26
27   echo $(kubectl get secret {{ include "influxdb.fullname" . }}-auth -o "jsonpath={.data['influxdb-user']}" --namespace {{ .Release.Namespace }} | base64 --decode)
28
29 {{- end }}
30
31 To retrieve the default user password:
32
33 {{- if .Values.setDefaultUser.user.existingSecret }}
34
35   echo $(kubectl get secret {{ .Values.setDefaultUser.user.existingSecret }} -o "jsonpath={.data['influxdb-password']}" --namespace {{ .Release.Namespace }} | base64 --decode)
36
37 {{- else }}
38
39   echo $(kubectl get secret {{ include "influxdb.fullname" . }}-auth -o "jsonpath={.data['influxdb-password']}" --namespace {{ .Release.Namespace }} | base64 --decode)
40
41 {{- end }}
42 {{- end }}