mirror of
https://github.com/bitnami/charts.git
synced 2026-03-13 14:57:24 +08:00
* [bitnami/drupal] Add missing namespace metadata Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * [skip ci] Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
12 lines
376 B
YAML
12 lines
376 B
YAML
{{- if not .Values.mariadb.enabled }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: "{{ include "common.names.fullname" . }}-externaldb"
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
db-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }}
|
|
{{- end }}
|