diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-10-27 17:30:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-10-27 17:30:51 +0000 |
commit | 0f4fb5208a4c0727e08ea1d2c3b5ca5c9e2d21a8 (patch) | |
tree | 620461666dfa4aaa539e7ec75a3a4dd776978cb9 /kubernetes/so/components/soHelpers/templates/_certificates.tpl | |
parent | b1ee058f941a9c9ff27467054d98b8a56c988797 (diff) | |
parent | 2954823e469dc10ec45f8170dac5a8041ab3fd44 (diff) |
Merge "[SO] Import various CAs in truststore"
Diffstat (limited to 'kubernetes/so/components/soHelpers/templates/_certificates.tpl')
-rw-r--r-- | kubernetes/so/components/soHelpers/templates/_certificates.tpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kubernetes/so/components/soHelpers/templates/_certificates.tpl b/kubernetes/so/components/soHelpers/templates/_certificates.tpl index fa25ba5177..ef3b0768f5 100644 --- a/kubernetes/so/components/soHelpers/templates/_certificates.tpl +++ b/kubernetes/so/components/soHelpers/templates/_certificates.tpl @@ -16,7 +16,11 @@ keytool -import -trustcacerts -alias msb_root -file \ /certificates/msb-ca.crt -keystore \ "{{ $subchartDot.Values.certInitializer.credsPath }}/{{ $subchartDot.Values.aaf.trustore }}" \ - -keypass $cadi_truststore_password -noprompt + -storepass $cadi_truststore_password -noprompt + keytool -importkeystore -srckeystore "{{ $subchartDot.Values.certInitializer.credsPath }}/truststoreONAPall.jks" \ + -srcstorepass {{ $subchartDot.Values.certInitializer.trustStoreAllPass }} \ + -destkeystore "{{ $subchartDot.Values.certInitializer.credsPath }}/{{ $subchartDot.Values.aaf.trustore }}" \ + -deststorepass $cadi_truststore_password -noprompt volumeMounts: {{ include "common.certInitializer.volumeMount" $subchartDot | indent 2 | trim }} - name: {{ include "common.name" $dot }}-msb-certificate |