Update deployment YAML file 11/94511/3
authorOleg Mitsura <oleg.mitsura@amdocs.com>
Mon, 26 Aug 2019 15:50:46 +0000 (11:50 -0400)
committerpwielebs <piotr.wielebski@nokia.com>
Thu, 29 Aug 2019 11:42:45 +0000 (13:42 +0200)
Due to SSL support for CBS Client in SDK new ENVs containing
paths to the certs & their passwords were added:
- truststore path
- truststore password path
- keystore path
- keystore password path

Issue-ID: DCAEGEN2-1552
Signed-off-by: Piotr Wielebski <piotr.wielebski@nokia.com>
Change-Id: Ib73048454db45a81d553afbe2d80fbb6253be711

kubernetes/dcaegen2/charts/dcae-config-binding-service/templates/deployment.yaml

index 19fe038..5496aee 100644 (file)
@@ -104,6 +104,14 @@ spec:
               value: "/opt/tls/cert.pem"
             - name: HTTPS_KEY_PATH
               value: "/opt/tls/key.pem"
+            - name: TRUST_STORE_PATH
+              value: "/opt/app/prh/etc/cert/trust.jks"
+            - name: TRUST_STORE_PASS_PATH
+              value: "/opt/app/prh/etc/cert/trust.pass"
+            - name: KEY_STORE_PATH
+              value: "/opt/app/prh/etc/cert/key.p12"
+            - name: KEY_STORE_PASS_PATH
+              value: "/opt/app/prh/etc/cert/key.pass"
         - name: {{ include "common.name" . }}-filebeat-onap
           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}