mirror of
https://github.com/rtomik/helm-charts.git
synced 2026-07-16 00:04:50 +00:00
12 lines
358 B
YAML
12 lines
358 B
YAML
{{- if not .Values.config.adminPassword.existingSecret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "checkmk.fullname" . }}-secrets
|
|
labels:
|
|
{{- include "checkmk.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
{{ .Values.config.adminPassword.passwordKey }}: {{ .Values.config.adminPassword.value | default "changeme" | b64enc }}
|
|
{{- end }}
|