diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-03-21 13:04:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-03-21 13:04:59 +0000 |
commit | 2dd6185e85714623cac0a62ec261770cdd36ffa0 (patch) | |
tree | 7a40b5835201ec26fa8e6e38ce09542469acb0a6 /kubernetes/aaf/components/aaf-sms/templates/job.yaml | |
parent | 2fbdf674c81bd30609aca2bb62a2d43ecea53948 (diff) | |
parent | 2652e5198b438818968bbd15e30dff1b6993c301 (diff) |
Merge "[OOF] Update containers to latest versions"
Diffstat (limited to 'kubernetes/aaf/components/aaf-sms/templates/job.yaml')
-rw-r--r-- | kubernetes/aaf/components/aaf-sms/templates/job.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kubernetes/aaf/components/aaf-sms/templates/job.yaml b/kubernetes/aaf/components/aaf-sms/templates/job.yaml index 1341889af3..6e50620a99 100644 --- a/kubernetes/aaf/components/aaf-sms/templates/job.yaml +++ b/kubernetes/aaf/components/aaf-sms/templates/job.yaml @@ -51,6 +51,7 @@ spec: export OSDF_PCI_OPT_PASS=${OSDF_PCI_OPT_PASS_PLAIN}; export OSDF_OPT_ENGINE_PASS=${OSDF_OPT_ENGINE_PASS_PLAIN}; export SO_PASS=${SO_PASS_PLAIN}; + export SDC_PASS=${SDC_PASS_PLAIN}; cd /config-input; for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; @@ -131,6 +132,11 @@ spec: - name: SO_PASS_PLAIN {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "so-creds" "key" "password") | indent 10 }} + - name: SDC_USER + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdc-creds" "key" "login") | indent 10 }} + - name: SDC_PASS_PLAIN + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdc-creds" "key" "password") | indent 10 }} + volumeMounts: - mountPath: /config-input name: {{ include "common.name" . }}-preload-input |