From 041a89a368680f71bc539e95ad9f9971b33ceddd Mon Sep 17 00:00:00 2001 From: Bartosz Gardziejewski Date: Wed, 19 May 2021 08:05:00 +0200 Subject: [DCAE] Add secrets as envs to application container in dcaegen2 Mount app-config-input configmap directly to app container. Signed-off-by: Bartosz Gardziejewski Change-Id: I50d80adcb87e86241876c9bab669739cb3d9c10c Issue-ID: DCAEGEN2-2630 --- .../common/dcaegen2-services-common/templates/_deployment.tpl | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl') diff --git a/kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl b/kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl index 5de526288e..4554b50de8 100644 --- a/kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl +++ b/kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl @@ -274,6 +274,10 @@ spec: imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} name: {{ include "common.name" . }} env: + {{- range $cred := .Values.credentials }} + - name: {{ $cred.name }} + {{- include "common.secret.envFromSecretFast" (dict "global" $ "uid" $cred.uid "key" $cred.key) | indent 10 }} + {{- end }} {{- if $certDir }} - name: DCAE_CA_CERTPATH value: {{ $certDir }}/cacert.pem @@ -317,6 +321,8 @@ spec: volumeMounts: - mountPath: /app-config name: app-config + - mountPath: /app-config-input + name: app-config-input {{- if $logDir }} - mountPath: {{ $logDir}} name: component-log -- cgit 1.2.3-korg