diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-10-15 12:47:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-10-15 12:47:15 +0000 |
commit | 3291609df9abe49dc393fbdfff3a17c3f31a139a (patch) | |
tree | d4b5953722932afb5eee69496d171d62c58e838d /kubernetes/aaf/components/aaf-sms/templates | |
parent | a697f8ab8f2b47100cb73a7f5812f70e242b75a6 (diff) | |
parent | 07fc3eaa03948ca47cfe1875cbe171599c798cb6 (diff) |
Merge "[OOF] Update OOF image versions"
Diffstat (limited to 'kubernetes/aaf/components/aaf-sms/templates')
-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 6e50620a99..6d9ecaa7cb 100644 --- a/kubernetes/aaf/components/aaf-sms/templates/job.yaml +++ b/kubernetes/aaf/components/aaf-sms/templates/job.yaml @@ -52,6 +52,7 @@ spec: export OSDF_OPT_ENGINE_PASS=${OSDF_OPT_ENGINE_PASS_PLAIN}; export SO_PASS=${SO_PASS_PLAIN}; export SDC_PASS=${SDC_PASS_PLAIN}; + export CPS_PASS=${CPS_PASS_PLAIN}; cd /config-input; for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; @@ -137,6 +138,11 @@ spec: - name: SDC_PASS_PLAIN {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdc-creds" "key" "password") | indent 10 }} + - name: CPS_USER + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cps-creds" "key" "login") | indent 10 }} + - name: CPS_PASS_PLAIN + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cps-creds" "key" "password") | indent 10 }} + volumeMounts: - mountPath: /config-input name: {{ include "common.name" . }}-preload-input |