diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-05-25 16:44:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-25 16:44:21 +0000 |
commit | 266437a94a8d17d96d6ed3f5d9d8be3f42976265 (patch) | |
tree | 3b062eba03ec1bdd08c026d02fbfbdb59ce02137 /kubernetes/aaf/charts/aaf-sms/templates/job.yaml | |
parent | 297b8dbb9c51fa736348da7f812444b8b23b142a (diff) | |
parent | a31a059029e7d802cdaecfe02ca0ce593516a1f4 (diff) |
Merge "Update oof so callback credentials" into frankfurt
Diffstat (limited to 'kubernetes/aaf/charts/aaf-sms/templates/job.yaml')
-rw-r--r-- | kubernetes/aaf/charts/aaf-sms/templates/job.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kubernetes/aaf/charts/aaf-sms/templates/job.yaml b/kubernetes/aaf/charts/aaf-sms/templates/job.yaml index 7a17b917ae..bb145ef3f8 100644 --- a/kubernetes/aaf/charts/aaf-sms/templates/job.yaml +++ b/kubernetes/aaf/charts/aaf-sms/templates/job.yaml @@ -51,6 +51,7 @@ spec: export CONFIG_DB_PASS=${CONFIG_DB_PASS_PLAIN}; 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}; cd /config-input; for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; @@ -125,6 +126,12 @@ spec: {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "osdf-opt-engine-creds" "key" "login") | indent 10 }} - name: OSDF_OPT_ENGINE_PASS_PLAIN {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "osdf-opt-engine-creds" "key" "password") | indent 10 }} + + - name: SO_USER + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "so-creds" "key" "login") | indent 10 }} + - name: SO_PASS_PLAIN + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "so-creds" "key" "password") | indent 10 }} + volumeMounts: - mountPath: /config-input name: {{ include "common.name" . }}-preload-input |