22 lines
633 B
Smarty
22 lines
633 B
Smarty
{{/* Define the secrets */}}
|
|
{{- define "couponstore.secrets" -}}
|
|
|
|
{{- $secretName := printf "%s-couponstore-secret" (include "tc.v1.common.names.fullname" .) }}
|
|
|
|
---
|
|
{{- $pg := .Values.cnpg.main }}
|
|
|
|
apiVersion: v1
|
|
kind: Secret
|
|
type: Opaque
|
|
metadata:
|
|
name: {{ $secretName }}
|
|
data:
|
|
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
|
SECRET_KEY_BASE: {{ index .data "SECRET_KEY_BASE" }}
|
|
{{- else }}
|
|
SECRET_KEY_BASE: {{ randAlphaNum 32 }}
|
|
{{- end }}
|
|
DATABASE_URL: {{ printf "postgres://%v:%v@%v-postgresql:5432/%v" $pg.user ($pg.postgresqlPassword | trimAll "\"") .Release.Name $pg.database }}
|
|
{{- end -}}
|