diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-03-26 08:16:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-26 08:16:36 +0000 |
commit | f762add5d044bae4532f86629c77281fe80e6ded (patch) | |
tree | 60d4852d48038a678e8ea4e86bdf872db9712f04 /kubernetes/dcaemod/components/dcaemod-nifi-registry/templates/deployment.yaml | |
parent | f26caa523f2d6463fe7514157b82bda6acba4b06 (diff) | |
parent | 1e3ae5560cb46f5cef68dd25d5b57d4b8250d8e4 (diff) |
Merge "[DCAEMOD] Use faster version of common secret template"
Diffstat (limited to 'kubernetes/dcaemod/components/dcaemod-nifi-registry/templates/deployment.yaml')
-rw-r--r-- | kubernetes/dcaemod/components/dcaemod-nifi-registry/templates/deployment.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/dcaemod/components/dcaemod-nifi-registry/templates/deployment.yaml b/kubernetes/dcaemod/components/dcaemod-nifi-registry/templates/deployment.yaml index 17ca948ade..7ba2a1202d 100644 --- a/kubernetes/dcaemod/components/dcaemod-nifi-registry/templates/deployment.yaml +++ b/kubernetes/dcaemod/components/dcaemod-nifi-registry/templates/deployment.yaml @@ -64,9 +64,9 @@ spec: - name: NIFI_REGISTRY_DB_URL value: {{ .Values.config.dbURL }} - name: NIFI_REGISTRY_DB_USER - {{- include "common.secret.envFromSecret" (dict "global" . "uid" "dbsecret" "key" "login") | indent 12 }} + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "dbsecret" "key" "login") | indent 12 }} - name: NIFI_REGISTRY_DB_PASS - {{- include "common.secret.envFromSecret" (dict "global" . "uid" "dbsecret" "key" "password") | indent 12 }} + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "dbsecret" "key" "password") | indent 12 }} volumes: - name: flow-storage persistentVolumeClaim: |