Skip to content
Snippets Groups Projects
secureconfig.yaml 1.38 KiB
{{- $rootSet := and (not .Values.settings.existingSecret) ((.Values.settings.superuserPassword).value) }}
{{- $userDatabaseSet := and (.Values.userDatabase) (not .Values.userDatabase.existingSecret) }}
{{- if or ($rootSet) ($userDatabaseSet) }}
apiVersion: v1
kind: Secret
metadata:
  name: {{ include "postgres.fullname" . }}
  labels:
    {{- include "postgres.labels" . | nindent 4 }}
type: Opaque
data:
{{- with .Values.settings }}
  {{- if (.superuser).value }}
  POSTGRES_USER: {{ .superuser.value | b64enc }}
  {{- end }}
  {{- if (.superuserPassword).value }}
  POSTGRES_PASSWORD: {{ .superuserPassword.value | b64enc }}
  {{- end }}
{{- end }}
{{- with .Values.userDatabase }}
  {{- if not .existingSecret }}
  {{- $_ := required "Values: userDatabase.name is mandatory if userDatabase is specified without existing secret" .name }}
  POSTGRES_DB: {{ required "Values: userDatabase.name.value is mandatory if userDatabase is specified without existingSecret." .name.value | b64enc }}
  {{- if (.user).value}}
  USERDB_USER: {{ .user.value | b64enc }}
  {{- $_ := required "Values: userDatabase.password is mandatory if userDatabase is specified without existing secret" .password }}
  USERDB_PASSWORD: {{ required "Values: userDatabase.password.value is mandatory if userDatabase.user is specified without existingSecret." .password.value | b64enc }}
  {{- end }}
  {{- end }}
{{- end }}
{{- end }}