X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=helm%2F3rdparty%2Finfluxdb%2Ftemplates%2FNOTES.txt;h=9663c6e37c7430343f5bb73b28d838be4961a3a5;hb=refs%2Fchanges%2F50%2F11150%2F10;hp=41ffa05acfb317573d20e66ba9665916e664ddbe;hpb=22ebf743884858441150813c18ba0751771e0eed;p=ric-plt%2Fric-dep.git diff --git a/helm/3rdparty/influxdb/templates/NOTES.txt b/helm/3rdparty/influxdb/templates/NOTES.txt index 41ffa05..9663c6e 100644 --- a/helm/3rdparty/influxdb/templates/NOTES.txt +++ b/helm/3rdparty/influxdb/templates/NOTES.txt @@ -1,42 +1,17 @@ -InfluxDB can be accessed via port {{ .Values.config.http.bind_address | default 8086 }} on the following DNS name from within your cluster: +InfluxDB 2 is deployed as a StatefulSet on your cluster. - http://{{ include "influxdb.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.config.http.bind_address | default 8086 }} +You can access it by using the service name: {{ template "influxdb.fullname" . }} -You can connect to the remote instance with the influx CLI. To forward the API port to localhost:8086, run the following: +To retrieve the password for the '{{ .Values.adminUser.user}}' user: - 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 }} +{{- if .Values.adminUser.existingSecret }} -You can also connect to the influx CLI from inside the container. To open a shell session in the InfluxDB pod, run the following: - - 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 - -To view the logs for the InfluxDB pod, run the following: - - kubectl logs -f --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ include "influxdb.fullname" . }} -o jsonpath='{ .items[0].metadata.name }') - -{{- if .Values.setDefaultUser.enabled }} - -To retrieve the default user name: - -{{- if .Values.setDefaultUser.user.existingSecret }} - - echo $(kubectl get secret {{ .Values.setDefaultUser.user.existingSecret }} -o "jsonpath={.data['influxdb-user']}" --namespace {{ .Release.Namespace }} | base64 --decode) + echo $(kubectl get secret {{ .Values.adminUser.existingSecret }} -o "jsonpath={.data['admin-password']}" --namespace {{ .Release.Namespace }} | base64 --decode) {{- else }} - echo $(kubectl get secret {{ include "influxdb.fullname" . }}-auth -o "jsonpath={.data['influxdb-user']}" --namespace {{ .Release.Namespace }} | base64 --decode) + echo $(kubectl get secret {{ include "influxdb.fullname" . }}-auth -o "jsonpath={.data['admin-password']}" --namespace {{ .Release.Namespace }} | base64 --decode) {{- end }} -To retrieve the default user password: - -{{- if .Values.setDefaultUser.user.existingSecret }} - - echo $(kubectl get secret {{ .Values.setDefaultUser.user.existingSecret }} -o "jsonpath={.data['influxdb-password']}" --namespace {{ .Release.Namespace }} | base64 --decode) - -{{- else }} - - echo $(kubectl get secret {{ include "influxdb.fullname" . }}-auth -o "jsonpath={.data['influxdb-password']}" --namespace {{ .Release.Namespace }} | base64 --decode) - -{{- end }} -{{- end }} +Note: with enabled persistence, admin password is only set once during the initial deployment. The password is not changed when InfluxDB 2 is re-deployed with different password.