feat(chart): mount existing secrets as envs
Enables using an existing secret, externally managed, to be mounted as envs just as if it was managed through Helm.pull/582/head
parent
2781b73cdd
commit
b44bc31b86
|
@ -1,7 +1,7 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
name: keel
|
name: keel
|
||||||
description: Open source, tool for automating Kubernetes deployment updates. Keel is stateless, robust and lightweight.
|
description: Open source, tool for automating Kubernetes deployment updates. Keel is stateless, robust and lightweight.
|
||||||
version: 0.9.6
|
version: 0.9.7
|
||||||
# Note that we use appVersion to get images tag, so make sure this is correct.
|
# Note that we use appVersion to get images tag, so make sure this is correct.
|
||||||
appVersion: 0.16.1
|
appVersion: 0.16.1
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -173,7 +173,7 @@ spec:
|
||||||
- name: AWS_REGION
|
- name: AWS_REGION
|
||||||
value: "{{ .Values.aws.region }}"
|
value: "{{ .Values.aws.region }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.secret.create }}
|
{{- if or .Values.secret.create .Values.secret.name }}
|
||||||
envFrom:
|
envFrom:
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: {{ .Values.secret.name | default (include "keel.fullname" .) }}
|
name: {{ .Values.secret.name | default (include "keel.fullname" .) }}
|
||||||
|
|
Loading…
Reference in New Issue