From 6a727b3b3a5e61e823ff40861e1dd3c188da4506 Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Mon, 26 Aug 2019 11:50:46 -0400 Subject: Update deployment YAML file 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 Change-Id: Ib73048454db45a81d553afbe2d80fbb6253be711 --- .../charts/dcae-config-binding-service/templates/deployment.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'kubernetes/dcaegen2/charts/dcae-config-binding-service') diff --git a/kubernetes/dcaegen2/charts/dcae-config-binding-service/templates/deployment.yaml b/kubernetes/dcaegen2/charts/dcae-config-binding-service/templates/deployment.yaml index 19fe038d44..5496aee2cb 100644 --- a/kubernetes/dcaegen2/charts/dcae-config-binding-service/templates/deployment.yaml +++ b/kubernetes/dcaegen2/charts/dcae-config-binding-service/templates/deployment.yaml @@ -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 }} -- cgit 1.2.3-korg