diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-04-06 19:55:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-04-06 19:55:16 +0000 |
commit | 5da97551c766150ac9a88d19f3c8095b236062f6 (patch) | |
tree | 2b4de6faff5a96d0e6d1d5b62ebf8b670ee25e4b /kubernetes/policy/charts/pap/values.yaml | |
parent | f033c7c113bf1e2eb82a56c9538c99f0783e3fa3 (diff) | |
parent | 3d9dc8b0248aa6373c127823d1014b05431c6e87 (diff) |
Merge "[POLICY] Use common secret template in pap"
Diffstat (limited to 'kubernetes/policy/charts/pap/values.yaml')
-rw-r--r-- | kubernetes/policy/charts/pap/values.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/kubernetes/policy/charts/pap/values.yaml b/kubernetes/policy/charts/pap/values.yaml index 05f43d66e0..7edb3ab871 100644 --- a/kubernetes/policy/charts/pap/values.yaml +++ b/kubernetes/policy/charts/pap/values.yaml @@ -22,6 +22,18 @@ ################################################################# global: persistence: {} + envsubstImage: dibi/envsubst + +################################################################# +# Secrets metaconfig +################################################################# +secrets: + - uid: db-secret + type: basicAuth + externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}' + login: '{{ .Values.db.user }}' + password: '{{ .Values.db.password }}' + passwordPolicy: required ################################################################# # Application configuration defaults. @@ -36,6 +48,10 @@ debugEnabled: false # application configuration +db: + user: policy_user + password: policy_user + # default number of instances replicaCount: 1 |