first commit

This commit is contained in:
2026-01-21 17:37:42 +11:00
commit bd1ed71ac4
142 changed files with 18994 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{{- if .Values.common.email_authentication -}}
{{- if .Values.common.fromMail.existingSecret -}}
{{- $existingSecret := (lookup "v1" "Secret" .Release.Namespace .Values.common.fromMail.name ).metadata | required "Secret .Values.common.fromMail.name is required. Create it external to helm chart or set existingSecret to false" }}
{{- else }}
{{ $fromMailPass := .Values.common.fromMail.password | required "Value password is required for the secret fromMail" -}}
apiVersion: v1
kind: Secret
metadata:
name: {{ .Values.common.fromMail.name }}
type: "Opaque"
data:
dxchange_email_frompassword: {{ $fromMailPass | quote }}
{{- end -}}
{{- end -}}