14 lines
353 B
YAML
14 lines
353 B
YAML
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: {{ include "common.names.fullname" . }}
|
||
|
labels:
|
||
|
{{- include "common.labels" . | nindent 4 }}
|
||
|
annotations:
|
||
|
{{- with .Values.annotations }}
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
type: Opaque
|
||
|
data:
|
||
|
postgresql-password: {{ ( .Values.postgresqlPassword | default "empty" ) | b64enc | quote }}
|