blob: c5232e8f484407006c45b12dc20815b105d85870 [file] [log] [blame]
seshukm0df1f8e2020-08-17 21:45:49 +05301{{- define "so.certificate.container_importer" -}}
2{{- $dot := default . .dot -}}
3{{- $initRoot := default $dot.Values.soHelpers .initRoot -}}
4{{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }}
5{{ include "common.certInitializer.initContainer" $subchartDot }}
6{{- if $dot.Values.global.aafEnabled }}
7- name: {{ include "common.name" $dot }}-msb-cert-importer
Sylvain Desbureaux747982c2020-11-19 17:40:05 +01008 image: {{ include "repositoryGenerator.repository" $subchartDot }}/{{ $dot.Values.global.aafAgentImage }}
seshukm0df1f8e2020-08-17 21:45:49 +05309 imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $subchartDot.Values.pullPolicy }}
10 command:
11 - "/bin/sh"
12 args:
13 - "-c"
14 - |
15 export $(grep '^c' {{ $subchartDot.Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
16 keytool -import -trustcacerts -alias msb_root -file \
17 /certificates/msb-ca.crt -keystore \
18 "{{ $subchartDot.Values.certInitializer.credsPath }}/{{ $subchartDot.Values.aaf.trustore }}" \
Sylvain Desbureaux29548232020-10-21 18:15:08 +020019 -storepass $cadi_truststore_password -noprompt
Sylvain Desbureaux5fa24332020-11-30 09:30:16 +010020 export EXIT_VALUE=$?
21 if [ "${EXIT_VALUE}" != "0" ]
22 then
23 echo "issue with password: $cadi_truststore_password"
Sylvain Desbureaux523e6602020-12-08 10:59:12 +010024 ls -lh {{ $subchartDot.Values.certInitializer.credsPath }}/mycreds.prop
25 cat {{ $subchartDot.Values.certInitializer.credsPath }}/mycreds.prop
Sylvain Desbureaux5fa24332020-11-30 09:30:16 +010026 exit $EXIT_VALUE
27 else
28 keytool -importkeystore -srckeystore "{{ $subchartDot.Values.certInitializer.credsPath }}/truststoreONAPall.jks" \
29 -srcstorepass {{ $subchartDot.Values.certInitializer.trustStoreAllPass }} \
30 -destkeystore "{{ $subchartDot.Values.certInitializer.credsPath }}/{{ $subchartDot.Values.aaf.trustore }}" \
31 -deststorepass $cadi_truststore_password -noprompt
32 export EXIT_VALUE=$?
33 fi
34 exit $EXIT_VALUE
seshukm0df1f8e2020-08-17 21:45:49 +053035 volumeMounts:
36 {{ include "common.certInitializer.volumeMount" $subchartDot | indent 2 | trim }}
37 - name: {{ include "common.name" $dot }}-msb-certificate
38 mountPath: /certificates
39{{- end }}
40{{- end -}}
41
42{{- define "so.certificate.volumes" -}}
43{{- $dot := default . .dot -}}
44{{- $initRoot := default $dot.Values.soHelpers .initRoot -}}
45{{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }}
46{{ include "common.certInitializer.volumes" $subchartDot }}
47{{- if $dot.Values.global.aafEnabled }}
48- name: {{ include "common.name" $dot }}-msb-certificate
49 secret:
50 secretName: {{ include "common.secret.getSecretNameFast" (dict "global" $subchartDot "uid" "so-onap-certs") }}
51{{- end }}
52{{- end -}}
53
54{{- define "so.certificate.volumeMount" -}}
55{{- $dot := default . .dot -}}
56{{- $initRoot := default $dot.Values.soHelpers .initRoot -}}
57{{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }}
58{{ include "common.certInitializer.volumeMount" $subchartDot }}
59{{- end -}}
60
61{{- define "so.certificates.env" -}}
62{{- $dot := default . .dot -}}
63{{- $initRoot := default $dot.Values.soHelpers .initRoot -}}
64{{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }}
65{{- if $dot.Values.global.aafEnabled }}
66- name: TRUSTSTORE
67 value: {{ $subchartDot.Values.certInitializer.credsPath }}/{{ $subchartDot.Values.aaf.trustore }}
68{{- if $dot.Values.global.security.aaf.enabled }}
69- name: KEYSTORE
Sylvain Desbureauxa1bbe5c2020-10-28 16:55:18 +010070 value: {{ $subchartDot.Values.certInitializer.credsPath }}/org.onap.so.p12
seshukm0df1f8e2020-08-17 21:45:49 +053071{{- end }}
72{{- end }}
73{{- end -}}