blob: 414192e2bc0a32932abf05730ead1c82296a1b23 [file] [log] [blame]
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +02001{{/*
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -04002# Copyright © 2020 Bell Canada, Samsung Electronics
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +02003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15*/}}
16
17
18
19{{- define "common.certInitializer._aafConfigVolumeName" -}}
20 {{ include "common.fullname" . }}-aaf-config
21{{- end -}}
22
23{{- define "common.certInitializer._aafAddConfigVolumeName" -}}
24 {{ print "aaf-add-config" }}
25{{- end -}}
26
27{{/*
28 common templates to enable cert initialization for applictaions
29
30 In deployments/jobs/stateful include:
31 initContainers:
32 {{ include "common.certInitializer.initContainer" . | nindent XX }}
33
34 containers:
35 volumeMounts:
36 {{- include "common.certInitializer.volumeMount" . | nindent XX }}
37 volumes:
38 {{- include "common.certInitializer.volume" . | nindent XX}}
39*/}}
40{{- define "common.certInitializer._initContainer" -}}
41{{- $dot := default . .dot -}}
42{{- $initRoot := default $dot.Values.certInitializer .initRoot -}}
43{{- $initName := default "certInitializer" -}}
Sylvain Desbureaux41cf72f2020-05-15 17:25:52 +020044{{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }}
Krzysztof Opasiake9754a02020-07-16 21:06:39 +020045{{ include "common.readinessCheck.waitFor" $subchartDot }}
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020046- name: {{ include "common.name" $dot }}-aaf-config
Sylvain Desbureaux145140b2020-11-19 16:48:39 +010047 image: {{ include "repositoryGenerator.repository" $subchartDot }}/{{ $subchartDot.Values.global.aafAgentImage }}
Krzysztof Opasiak3e5fa9a2020-05-19 00:44:12 +020048 imagePullPolicy: {{ $subchartDot.Values.global.pullPolicy | default $subchartDot.Values.pullPolicy }}
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020049 volumeMounts:
50 - mountPath: {{ $initRoot.mountPath }}
51 name: {{ include "common.certInitializer._aafConfigVolumeName" $dot }}
Krzysztof Opasiak95a5f842020-05-06 23:27:18 +020052 - mountPath: /opt/app/aaf_config/cert/truststoreONAPall.jks.b64
53 name: aaf-agent-certs
54 subPath: truststoreONAPall.jks.b64
55 - mountPath: /opt/app/aaf_config/cert/truststoreONAP.p12.b64
56 name: aaf-agent-certs
57 subPath: truststoreONAP.p12.b64
Sylvain Desbureauxb8341592021-02-23 15:54:00 +010058 - name: {{ include "common.certInitializer._aafAddConfigVolumeName" $dot }}
59 mountPath: /opt/app/aaf_config/bin/retrieval_check.sh
60 subPath: retrieval_check.sh
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020061{{- if $initRoot.aaf_add_config }}
62 - name: {{ include "common.certInitializer._aafAddConfigVolumeName" $dot }}
63 mountPath: /opt/app/aaf_config/bin/aaf-add-config.sh
64 subPath: aaf-add-config.sh
65{{- end }}
66 command:
67 - sh
68 - -c
69 - |
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020070 /opt/app/aaf_config/bin/agent.sh
Guillaume Lambert2b6f82c2021-03-02 21:45:00 +010071 . /opt/app/aaf_config/bin/retrieval_check.sh
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020072{{- if $initRoot.aaf_add_config }}
73 /opt/app/aaf_config/bin/aaf-add-config.sh
74{{- end }}
75 env:
76 - name: APP_FQI
77 value: "{{ $initRoot.fqi }}"
78 - name: aaf_locate_url
79 value: "https://aaf-locate.{{ $dot.Release.Namespace}}:8095"
80 - name: aaf_locator_container
81 value: "oom"
82 - name: aaf_locator_container_ns
83 value: "{{ $dot.Release.Namespace }}"
84 - name: aaf_locator_fqdn
85 value: "{{ $initRoot.fqdn }}"
86 - name: aaf_locator_app_ns
87 value: "{{ $initRoot.app_ns }}"
88 - name: DEPLOY_FQI
89 {{- include "common.secret.envFromSecretFast" (dict "global" $subchartDot "uid" "deployer-creds" "key" "login") | indent 6 }}
90 - name: DEPLOY_PASSWORD
91 {{- include "common.secret.envFromSecretFast" (dict "global" $subchartDot "uid" "deployer-creds" "key" "password") | indent 6 }}
92 #Note: want to put this on Nodes, eventually
93 - name: cadi_longitude
94 value: "{{ default "52.3" $initRoot.cadi_longitude }}"
95 - name: cadi_latitude
96 value: "{{ default "13.2" $initRoot.cadi_latitude }}"
97 #Hello specific. Clients don't don't need this, unless Registering with AAF Locator
98 - name: aaf_locator_public_fqdn
99 value: "{{ $initRoot.public_fqdn | default "" }}"
100{{- end -}}
101
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400102{{/*
103 This init container will import custom .pem certificates to truststoreONAPall.jks
104 Custom certificates must be placed in common/certInitializer/resources directory.
105
106 The feature is enabled by setting Values.global.importCustomCertsEnabled = true
107 It can be used independently of aafEnabled, however it requires the same includes
108 as describe above for _initContainer.
109
110 When AAF is enabled the truststoreONAPAll.jks (which contains AAF CA) will be used
111 to import custom certificates, otherwise the default java keystore will be used.
112
113 The updated truststore file will be placed in /updatedTruststore and can be mounted per component
114 to a specific path by defining Values.certInitializer.truststoreMountpath (see _trustStoreVolumeMount)
115 The truststore file will be available to mount even if no custom certificates were imported.
116*/}}
117{{- define "common.certInitializer._initImportCustomCertsContainer" -}}
118{{- $dot := default . .dot -}}
119{{- $initRoot := default $dot.Values.certInitializer .initRoot -}}
120{{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }}
121- name: {{ include "common.name" $dot }}-import-custom-certs
Sylvain Desbureaux145140b2020-11-19 16:48:39 +0100122 image: {{ include "repositoryGenerator.image.jre" $subchartDot }}
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400123 imagePullPolicy: {{ $subchartDot.Values.global.pullPolicy | default $subchartDot.Values.pullPolicy }}
124 securityContext:
125 runAsUser: 0
126 command:
Sylvain Desbureaux36389672021-01-19 14:51:24 +0100127 - /bin/sh
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400128 - -c
129 - /root/import-custom-certs.sh
130 env:
131 - name: AAF_ENABLED
132 value: "{{ $subchartDot.Values.global.aafEnabled }}"
133 - name: TRUSTSTORE_OUTPUT_FILENAME
134 value: "{{ $initRoot.truststoreOutputFileName }}"
135 - name: TRUSTSTORE_PASSWORD
136 {{- include "common.secret.envFromSecretFast" (dict "global" $subchartDot "uid" "truststore-creds" "key" "password") | indent 6 }}
137 volumeMounts:
138 - mountPath: /certs
139 name: aaf-agent-certs
140 - mountPath: /root/import-custom-certs.sh
141 name: aaf-agent-certs
142 subPath: import-custom-certs.sh
143 - mountPath: /updatedTruststore
144 name: updated-truststore
145{{- end -}}
146
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +0200147{{- define "common.certInitializer._volumeMount" -}}
148{{- $dot := default . .dot -}}
149{{- $initRoot := default $dot.Values.certInitializer .initRoot -}}
krishnaa96edf6f372020-09-09 09:30:58 +0530150- mountPath: {{ $initRoot.appMountPath }}
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +0200151 name: {{ include "common.certInitializer._aafConfigVolumeName" $dot }}
152{{- end -}}
153
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400154{{/*
155 This is used together with _initImportCustomCertsContainer
156 It mounts the updated truststore (with imported custom certificates) to the
157 truststoreMountpath defined in the values file for the component.
158*/}}
159{{- define "common.certInitializer._trustStoreVolumeMount" -}}
160{{- $dot := default . .dot -}}
161{{- $initRoot := default $dot.Values.certInitializer .initRoot -}}
162{{- if gt (len $initRoot.truststoreMountpath) 0 }}
163- mountPath: {{ $initRoot.truststoreMountpath }}/{{ $initRoot.truststoreOutputFileName }}
164 name: updated-truststore
165 subPath: {{ $initRoot.truststoreOutputFileName }}
166{{- end -}}
167{{- end -}}
168
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +0200169{{- define "common.certInitializer._volumes" -}}
170{{- $dot := default . .dot -}}
171{{- $initRoot := default $dot.Values.certInitializer .initRoot -}}
Krzysztof Opasiak3e5fa9a2020-05-19 00:44:12 +0200172{{- $subchartDot := mergeOverwrite (deepCopy (omit $dot "Values")) (dict "Chart" (set (fromJson (toJson $dot.Chart)) "Name" $initRoot.nameOverride) "Values" (mergeOverwrite (deepCopy $initRoot) (dict "global" $dot.Values.global))) }}
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +0200173- name: {{ include "common.certInitializer._aafConfigVolumeName" $dot }}
174 emptyDir:
175 medium: Memory
Krzysztof Opasiak95a5f842020-05-06 23:27:18 +0200176- name: aaf-agent-certs
177 configMap:
Krzysztof Opasiak75f18752020-09-09 20:32:56 +0200178 name: {{ tpl $subchartDot.Values.certsCMName $subchartDot }}
Krzysztof Opasiak95a5f842020-05-06 23:27:18 +0200179 defaultMode: 0700
Krzysztof Opasiak108483c2020-05-14 01:44:30 +0200180- name: {{ include "common.certInitializer._aafAddConfigVolumeName" $dot }}
181 configMap:
182 name: {{ include "common.fullname" $subchartDot }}-add-config
183 defaultMode: 0700
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400184{{- if $dot.Values.global.importCustomCertsEnabled }}
185- name: updated-truststore
186 emptyDir: {}
187{{- end -}}
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +0200188{{- end -}}
189
190{{- define "common.certInitializer.initContainer" -}}
191{{- $dot := default . .dot -}}
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400192 {{- if $dot.Values.global.importCustomCertsEnabled }}
193 {{ include "common.certInitializer._initImportCustomCertsContainer" . }}
194 {{- end -}}
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +0200195 {{- if $dot.Values.global.aafEnabled }}
196 {{ include "common.certInitializer._initContainer" . }}
197 {{- end -}}
198{{- end -}}
199
200{{- define "common.certInitializer.volumeMount" -}}
201{{- $dot := default . .dot -}}
202 {{- if $dot.Values.global.aafEnabled }}
203 {{- include "common.certInitializer._volumeMount" . }}
204 {{- end -}}
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400205 {{- if $dot.Values.global.importCustomCertsEnabled }}
206 {{- include "common.certInitializer._trustStoreVolumeMount" . }}
207 {{- end -}}
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +0200208{{- end -}}
209
210{{- define "common.certInitializer.volumes" -}}
211{{- $dot := default . .dot -}}
Jozsef Csongvai9d4d5af2020-07-13 11:10:25 -0400212 {{- if or ($dot.Values.global.aafEnabled ) ($dot.Values.global.importCustomCertsEnabled) }}
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +0200213 {{- include "common.certInitializer._volumes" . }}
214 {{- end -}}
215{{- end -}}