mirror of
https://github.com/bitnami/charts.git
synced 2026-03-13 14:57:24 +08:00
17 lines
453 B
YAML
17 lines
453 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "drupal.fullname" . }}
|
|
labels:
|
|
app: {{ template "drupal.fullname" . }}
|
|
chart: {{ template "drupal.chart" . }}
|
|
release: "{{ .Release.Name }}"
|
|
heritage: "{{ .Release.Service }}"
|
|
type: Opaque
|
|
data:
|
|
{{ if .Values.drupalPassword }}
|
|
drupal-password: {{ .Values.drupalPassword | b64enc | quote }}
|
|
{{ else }}
|
|
drupal-password: {{ randAlphaNum 10 | b64enc | quote }}
|
|
{{ end }}
|