diff options
author | krishnaa96 <krishna.moorthy6@wipro.com> | 2021-08-02 11:19:16 +0530 |
---|---|---|
committer | krishnaa96 <krishna.moorthy6@wipro.com> | 2021-10-11 17:36:56 +0530 |
commit | 07fc3eaa03948ca47cfe1875cbe171599c798cb6 (patch) | |
tree | 37033d78fc8890a8747607cda9197016dea49fac /kubernetes/aaf/components/aaf-sms/templates | |
parent | 3298a68556820ce7fe49d8674a1ac81e04c1069e (diff) |
[OOF] Update OOF image versions
- Add configuration for CPS
- Update OSDF version to 3.0.6
- Update HAS version to 2.2.1.
Issue-ID: OPTFRA-987
Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com>
Change-Id: I5b2110f131ab50ba7d2617079d2c7f793b3341ae
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 |