diff options
author | saul.gill <saul.gill@est.tech> | 2021-09-21 15:09:55 +0100 |
---|---|---|
committer | saul.gill <saul.gill@est.tech> | 2021-10-22 10:55:56 +0100 |
commit | 6238df47ecfcc1d2e40c2a5bec69272999d2af12 (patch) | |
tree | 847dfa85ee46cdd8c9a58a2d9862c297166e479f /kubernetes/policy/components/policy-clamp-be/values.yaml | |
parent | 2c2be1eea53e97cc1972c0b89571baff92e59484 (diff) |
[POLICY] Altered helm chart for policy-clamp-be
Added runtime-controlloop url and creds to application.properties
Added new image to values
Fixed SpringBoot issue where config could not be found
Issue-ID: POLICY-3593
Change-Id: Ie54b4b10b3df428f6d6f72f2f53d6384f24c00cc
Signed-off-by: saul.gill <saul.gill@est.tech>
Diffstat (limited to 'kubernetes/policy/components/policy-clamp-be/values.yaml')
-rw-r--r-- | kubernetes/policy/components/policy-clamp-be/values.yaml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/kubernetes/policy/components/policy-clamp-be/values.yaml b/kubernetes/policy/components/policy-clamp-be/values.yaml index dcbe59c382..518e7b13a2 100644 --- a/kubernetes/policy/components/policy-clamp-be/values.yaml +++ b/kubernetes/policy/components/policy-clamp-be/values.yaml @@ -60,11 +60,17 @@ secrets: externalSecret: '{{ tpl (default "" .Values.sdc.sdcClientExternalSecret) . }}' password: '{{ .Values.sdc.clientPassword }}' passwordPolicy: required + - uid: runtime-be-secret + type: basicAuth + externalSecret: '{{ tpl (default "" .Values.config.appUserExternalSecret) . }}' + login: '{{ .Values.config.policyAppUserName }}' + password: '{{ .Values.config.policyAppUserPassword }}' + passwordPolicy: required flavor: small # application image -image: onap/policy-clamp-backend:6.1.1 +image: onap/policy-clamp-backend:6.1.2 pullPolicy: Always # flag to enable debugging - application support required @@ -79,7 +85,6 @@ log: ################################################################# #####dummy values for db user and password to pass lint!!!####### - sdc: clientPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U @@ -92,6 +97,8 @@ db: internalPort: 3306 config: + policyAppUserName: runtimeUser + policyAppUserPassword: none log: logstashServiceName: log-ls logstashPort: 5044 |