diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-09-14 10:02:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-09-14 10:02:54 +0000 |
commit | 83b60d8e01f1803fdb4963bd72cd6ebd9953b44f (patch) | |
tree | 3d9d543146e1b4f91f8343b15885bcf0194718fd /kubernetes/common | |
parent | ce6cad81087ce0572c4f9a2cf346c070a2a16046 (diff) | |
parent | 4372e83bea918c4e9387ec556e52af3075563657 (diff) |
Merge "[TREE-WIDE] Use faster version of common secret template"
Diffstat (limited to 'kubernetes/common')
-rw-r--r-- | kubernetes/common/common/templates/_aafconfig.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/common/common/templates/_aafconfig.tpl b/kubernetes/common/common/templates/_aafconfig.tpl index afc402f648..b1021ab9d7 100644 --- a/kubernetes/common/common/templates/_aafconfig.tpl +++ b/kubernetes/common/common/templates/_aafconfig.tpl @@ -117,9 +117,9 @@ - name: aaf_locator_app_ns value: "{{ $aafRoot.app_ns }}" - name: DEPLOY_FQI - {{- include "common.secret.envFromSecret" (dict "global" $dot "uid" $aafRoot.secret_uid "key" "login") | indent 6 }} + {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" $aafRoot.secret_uid "key" "login") | indent 6 }} - name: DEPLOY_PASSWORD - {{- include "common.secret.envFromSecret" (dict "global" $dot "uid" $aafRoot.secret_uid "key" "password") | indent 6 }} + {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" $aafRoot.secret_uid "key" "password") | indent 6 }} #Note: want to put this on Nodes, eventually - name: cadi_longitude value: "{{ default "52.3" $aafRoot.cadi_longitude }}" |