dashboard/deployment/helmchart/templates/secrets-admin-panel.yaml

24 lines
1.1 KiB
YAML
Raw Normal View History

2021-10-04 13:53:13 +02:00
{{- if (include "adminBackend.createSecret" .) }}
2021-09-30 16:03:54 +02:00
apiVersion: v1
kind: Secret
metadata:
2021-10-04 13:53:13 +02:00
name: {{ include "adminBackend.secretName" . }}
2021-09-30 16:03:54 +02:00
labels: {{- include "common.labels.standard" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
type: Opaque
data:
{{- if and (.Values.adminBackend.password) (not .Values.adminBackend.existingSecret) }}
adminBackend-password: {{ .Values.adminBackend.password | b64enc | quote }}
{{- else if not .Values.adminBackend.existingSecret }}
adminBackend-password: {{ randAlphaNum 10 | b64enc | quote }}
{{- end }}
{{- if and (.Values.adminBackend.smtp.password) (.Values.adminBackend.smtp.enabled) (not .Values.adminBackend.smtp.existingSecret) }}
smtp-password: {{ .Values.adminBackend.smtp.password | b64enc | quote }}
{{- end }}
{{- end }}