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