2023-04-08 19:26:41 +00:00
|
|
|
{{- if not .Values.mastodon.smtp.existingSecret -}}
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Secret
|
|
|
|
metadata:
|
2024-06-01 00:42:03 +00:00
|
|
|
name: {{ printf "%s-smtp" (include "mastodon.fullname" .) }}
|
2023-04-08 19:26:41 +00:00
|
|
|
labels:
|
|
|
|
{{- include "mastodon.labels" . | nindent 4 }}
|
|
|
|
type: Opaque
|
|
|
|
data:
|
|
|
|
{{- with .Values.mastodon.smtp.login }}
|
|
|
|
login: {{ . | b64enc }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.mastodon.smtp.password }}
|
|
|
|
password: {{ . | b64enc }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|