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/cds | |
parent | ce6cad81087ce0572c4f9a2cf346c070a2a16046 (diff) | |
parent | 4372e83bea918c4e9387ec556e52af3075563657 (diff) |
Merge "[TREE-WIDE] Use faster version of common secret template"
Diffstat (limited to 'kubernetes/cds')
-rwxr-xr-x | kubernetes/cds/charts/cds-py-executor/templates/deployment.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/cds/charts/cds-py-executor/templates/deployment.yaml b/kubernetes/cds/charts/cds-py-executor/templates/deployment.yaml index f9c3377dd8..80c8fca37e 100755 --- a/kubernetes/cds/charts/cds-py-executor/templates/deployment.yaml +++ b/kubernetes/cds/charts/cds-py-executor/templates/deployment.yaml @@ -51,9 +51,9 @@ spec: - name: AUTH_TYPE value: {{ .Values.config.authType }} - name: API_USERNAME - {{- include "common.secret.envFromSecret" (dict "global" . "uid" "api-credentials" "key" "login") | nindent 12 }} + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-credentials" "key" "login") | nindent 12 }} - name: API_PASSWORD - {{- include "common.secret.envFromSecret" (dict "global" . "uid" "api-credentials" "key" "password") | nindent 12 }} + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-credentials" "key" "password") | nindent 12 }} - name: LOG_FILE value: {{ .Values.config.logFile }} - name: ARTIFACT_MANAGER_PORT |