mirror of https://github.com/easzlab/kubeasz.git
21 lines
615 B
YAML
21 lines
615 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "grafana.fullname" . }}
|
|
labels:
|
|
app: {{ template "grafana.name" . }}
|
|
chart: {{ template "grafana.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
type: Opaque
|
|
data:
|
|
admin-user: {{ .Values.adminUser | b64enc | quote }}
|
|
{{- if .Values.adminPassword }}
|
|
admin-password: {{ .Values.adminPassword | b64enc | quote }}
|
|
{{- else }}
|
|
admin-password: {{ randAlphaNum 40 | b64enc | quote }}
|
|
{{- end }}
|
|
{{- if not .Values.ldap.existingSecret }}
|
|
ldap-toml: {{ .Values.ldap.config | b64enc | quote }}
|
|
{{- end }}
|