mirror of
https://github.com/bitnami/charts.git
synced 2026-02-25 07:38:03 +08:00
27 lines
906 B
YAML
27 lines
906 B
YAML
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if not .Values.existingSecret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
type: Opaque
|
|
data:
|
|
{{- if .Values.drupalPassword }}
|
|
drupal-password: {{ default "" .Values.drupalPassword | b64enc | quote }}
|
|
{{- else }}
|
|
drupal-password: {{ randAlphaNum 10 | b64enc | quote }}
|
|
{{- end }}
|
|
{{- if .Values.smtpPassword }}
|
|
smtp-password: {{ .Values.smtpPassword | b64enc | quote }}
|
|
{{- end }}
|
|
{{- end }}
|