Files
charts/bitnami/joomla/templates/externaldb-secrets.yaml
Javier J. Salmerón-García 7b9c400721 [bitnami/joomla] Move to non-root and adapt to Bitnami standards. (#3085)
* [bitnami/joomla] Move to non-root and adapt to Bitnami standards.

* Remove incorrect reference

* Undo moodle change

* Update values.yaml
2020-07-14 15:14:09 +02:00

11 lines
310 B
YAML

{{- if not .Values.mariadb.enabled }}
apiVersion: v1
kind: Secret
metadata:
name: {{ printf "%s-%s" .Release.Name "externaldb" }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
type: Opaque
data:
db-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }}
{{- end }}