mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-21 02:56:50 +10:00
fix(bitnami/etcd): right path for existingSecret
The `statefulset.yaml` template was expecting `auth.existingSecret` but in the `values.yaml` and the documentation it asks for `auth.rbac.existingSecret`. Fixes #1041.
This commit is contained in:
@@ -200,7 +200,7 @@ spec:
|
||||
- name: ETCD_ROOT_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ if .Values.auth.existingSecret }}{{ .Values.auth.existingSecret }}{{ else }}{{ template "etcd.fullname" . }}{{ end }}
|
||||
name: {{ if .Values.auth.rbac.existingSecret }}{{ .Values.auth.rbac.existingSecret }}{{ else }}{{ template "etcd.fullname" . }}{{ end }}
|
||||
key: etcd-root-password
|
||||
{{- end }}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user