Archived
1
0

feat(helm): Don't create Secret if existingSecret is provided (#6397)

This commit is contained in:
Antoine 2023-08-28 21:01:11 +02:00 committed by GitHub
parent 56d3548fa2
commit eb8099ff89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,4 @@
{{- if not .Values.existingSecret }}
apiVersion: v1 apiVersion: v1
kind: Secret kind: Secret
metadata: metadata:
@ -11,8 +12,9 @@ metadata:
app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/managed-by: {{ .Release.Service }}
type: Opaque type: Opaque
data: data:
{{ if .Values.password }} {{- if .Values.password }}
password: "{{ .Values.password | b64enc }}" password: "{{ .Values.password | b64enc }}"
{{ else }} {{- else }}
password: "{{ randAlphaNum 24 | b64enc }}" password: "{{ randAlphaNum 24 | b64enc }}"
{{ end }} {{- end }}
{{- end }}