diff options
author | Harish Venkata Kajur <vk250x@att.com> | 2021-06-15 11:49:16 -0400 |
---|---|---|
committer | Harish Venkata Kajur <vk250x@att.com> | 2021-06-16 12:28:25 -0400 |
commit | 95b39b13853b40ec3ac4086780ac6ad09a2be3cc (patch) | |
tree | dd9cecff2993f7e54fd524c9fdc8df19054729ef /kubernetes/aai/components/aai-resources | |
parent | f11d35a6320c98785c6c2ec2a84c8a2988a4b732 (diff) |
[AAI] Update truststore path to generated certificate location
After the change to use the generated certificate
the path to where the truststoreONAPAll.jks is changed
so updating location to match that
Issue-ID: AAI-3350
Change-Id: Ic20cd2c87eb66ca098dcc232d8629fd7d25d8413
Signed-off-by: Harish Venkata Kajur <vk250x@att.com>
Diffstat (limited to 'kubernetes/aai/components/aai-resources')
-rw-r--r-- | kubernetes/aai/components/aai-resources/templates/deployment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/aai/components/aai-resources/templates/deployment.yaml b/kubernetes/aai/components/aai-resources/templates/deployment.yaml index d630647883..1297809658 100644 --- a/kubernetes/aai/components/aai-resources/templates/deployment.yaml +++ b/kubernetes/aai/components/aai-resources/templates/deployment.yaml @@ -122,7 +122,7 @@ spec: - name: LOCAL_GROUP_ID value: {{ .Values.global.config.groupId | quote }} - name: POST_JAVA_OPTS - value: '-Djavax.net.ssl.trustStore=/opt/app/aai-resources/resources/aaf/truststoreONAPall.jks -Djavax.net.ssl.trustStorePassword={{ .Values.certInitializer.truststorePassword }}' + value: '-Djavax.net.ssl.trustStore={{ .Values.certInitializer.credsPath }}/truststoreONAPall.jks -Djavax.net.ssl.trustStorePassword={{ .Values.certInitializer.truststorePassword }}' - name: TRUSTORE_ALL_PASSWORD value: {{ .Values.certInitializer.truststorePassword }} volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }} |