mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
416 B
13 lines
416 B
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "wiki.fullname" . }}
|
|
labels:
|
|
app: {{ template "wiki.fullname" . }}
|
|
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
release: "{{ .Release.Name }}"
|
|
heritage: "{{ .Release.Service }}"
|
|
type: Opaque
|
|
data:
|
|
db-user: {{ .Values.postgresql.postgresUser | b64enc | quote }}
|
|
db-password: {{ .Values.postgresql.postgresPassword | b64enc | quote }}
|