Files
charts/bitnami/kong/templates/external-database-secret.yaml
Juan Ariza Toledano 1469a8aaea [bitnami/kong] Chart standardized (#9348)
* [bitnami/kong] Chart standardized

Signed-off-by: juan131 <juanariza@vmware.com>

* Include requested changes

Signed-off-by: juan131 <juan.ariza.1311993@gmail.com>

* [bitnami/kong] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2022-03-11 13:54:07 +01:00

24 lines
939 B
YAML

{{- if (include "kong.createExternalDBSecret" .) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ printf "%s-external-secret" (include "common.names.fullname" .) }}
namespace: {{ .Release.Namespace }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: server
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
type: Opaque
data:
{{- if eq .Values.database "cassandra" }}
cassandra-password: {{ .Values.cassandra.external.password | b64enc | quote }}
{{- end }}
{{- if eq .Values.database "postgresql" }}
password: {{ .Values.postgresql.external.password | b64enc | quote }}
{{- end }}
{{- end }}