Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 1 | {{/* |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 2 | # Copyright © 2020 Bell Canada, Samsung Electronics |
Sylvain Desbureaux | da711dd | 2021-04-07 17:22:42 +0200 | [diff] [blame] | 3 | # Copyright © 2021 Orange |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | */}} |
| 17 | |
| 18 | |
| 19 | |
| 20 | {{- define "common.certInitializer._aafConfigVolumeName" -}} |
| 21 | {{ include "common.fullname" . }}-aaf-config |
| 22 | {{- end -}} |
| 23 | |
| 24 | {{- define "common.certInitializer._aafAddConfigVolumeName" -}} |
| 25 | {{ print "aaf-add-config" }} |
| 26 | {{- end -}} |
| 27 | |
| 28 | {{/* |
| 29 | common templates to enable cert initialization for applictaions |
| 30 | |
| 31 | In deployments/jobs/stateful include: |
| 32 | initContainers: |
| 33 | {{ include "common.certInitializer.initContainer" . | nindent XX }} |
| 34 | |
| 35 | containers: |
| 36 | volumeMounts: |
| 37 | {{- include "common.certInitializer.volumeMount" . | nindent XX }} |
| 38 | volumes: |
| 39 | {{- include "common.certInitializer.volume" . | nindent XX}} |
| 40 | */}} |
| 41 | {{- define "common.certInitializer._initContainer" -}} |
| 42 | {{- $dot := default . .dot -}} |
| 43 | {{- $initRoot := default $dot.Values.certInitializer .initRoot -}} |
| 44 | {{- $initName := default "certInitializer" -}} |
Sylvain Desbureaux | 41cf72f | 2020-05-15 17:25:52 +0200 | [diff] [blame] | 45 | {{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }} |
Krzysztof Opasiak | e9754a0 | 2020-07-16 21:06:39 +0200 | [diff] [blame] | 46 | {{ include "common.readinessCheck.waitFor" $subchartDot }} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 47 | - name: {{ include "common.name" $dot }}-aaf-config |
Sylvain Desbureaux | 145140b | 2020-11-19 16:48:39 +0100 | [diff] [blame] | 48 | image: {{ include "repositoryGenerator.repository" $subchartDot }}/{{ $subchartDot.Values.global.aafAgentImage }} |
Krzysztof Opasiak | 3e5fa9a | 2020-05-19 00:44:12 +0200 | [diff] [blame] | 49 | imagePullPolicy: {{ $subchartDot.Values.global.pullPolicy | default $subchartDot.Values.pullPolicy }} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 50 | volumeMounts: |
| 51 | - mountPath: {{ $initRoot.mountPath }} |
| 52 | name: {{ include "common.certInitializer._aafConfigVolumeName" $dot }} |
Krzysztof Opasiak | 95a5f84 | 2020-05-06 23:27:18 +0200 | [diff] [blame] | 53 | - mountPath: /opt/app/aaf_config/cert/truststoreONAPall.jks.b64 |
| 54 | name: aaf-agent-certs |
| 55 | subPath: truststoreONAPall.jks.b64 |
| 56 | - mountPath: /opt/app/aaf_config/cert/truststoreONAP.p12.b64 |
| 57 | name: aaf-agent-certs |
| 58 | subPath: truststoreONAP.p12.b64 |
Sylvain Desbureaux | b834159 | 2021-02-23 15:54:00 +0100 | [diff] [blame] | 59 | - name: {{ include "common.certInitializer._aafAddConfigVolumeName" $dot }} |
| 60 | mountPath: /opt/app/aaf_config/bin/retrieval_check.sh |
| 61 | subPath: retrieval_check.sh |
Sylvain Desbureaux | da711dd | 2021-04-07 17:22:42 +0200 | [diff] [blame] | 62 | {{- if hasKey $initRoot "ingressTlsSecret" }} |
| 63 | - name: {{ include "common.certInitializer._aafAddConfigVolumeName" $dot }} |
| 64 | mountPath: /opt/app/aaf_config/bin/tls_certs_configure.sh |
| 65 | subPath: tls_certs_configure.sh |
| 66 | {{- end }} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 67 | {{- if $initRoot.aaf_add_config }} |
| 68 | - name: {{ include "common.certInitializer._aafAddConfigVolumeName" $dot }} |
| 69 | mountPath: /opt/app/aaf_config/bin/aaf-add-config.sh |
| 70 | subPath: aaf-add-config.sh |
| 71 | {{- end }} |
| 72 | command: |
| 73 | - sh |
| 74 | - -c |
| 75 | - | |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 76 | /opt/app/aaf_config/bin/agent.sh |
Guillaume Lambert | 2b6f82c | 2021-03-02 21:45:00 +0100 | [diff] [blame] | 77 | . /opt/app/aaf_config/bin/retrieval_check.sh |
Sylvain Desbureaux | da711dd | 2021-04-07 17:22:42 +0200 | [diff] [blame] | 78 | {{- if hasKey $initRoot "ingressTlsSecret" }} |
| 79 | /opt/app/aaf_config/bin/tls_certs_configure.sh |
| 80 | {{- end -}} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 81 | {{- if $initRoot.aaf_add_config }} |
| 82 | /opt/app/aaf_config/bin/aaf-add-config.sh |
| 83 | {{- end }} |
| 84 | env: |
| 85 | - name: APP_FQI |
| 86 | value: "{{ $initRoot.fqi }}" |
| 87 | - name: aaf_locate_url |
| 88 | value: "https://aaf-locate.{{ $dot.Release.Namespace}}:8095" |
| 89 | - name: aaf_locator_container |
| 90 | value: "oom" |
| 91 | - name: aaf_locator_container_ns |
| 92 | value: "{{ $dot.Release.Namespace }}" |
| 93 | - name: aaf_locator_fqdn |
| 94 | value: "{{ $initRoot.fqdn }}" |
| 95 | - name: aaf_locator_app_ns |
| 96 | value: "{{ $initRoot.app_ns }}" |
| 97 | - name: DEPLOY_FQI |
| 98 | {{- include "common.secret.envFromSecretFast" (dict "global" $subchartDot "uid" "deployer-creds" "key" "login") | indent 6 }} |
| 99 | - name: DEPLOY_PASSWORD |
| 100 | {{- include "common.secret.envFromSecretFast" (dict "global" $subchartDot "uid" "deployer-creds" "key" "password") | indent 6 }} |
| 101 | #Note: want to put this on Nodes, eventually |
| 102 | - name: cadi_longitude |
| 103 | value: "{{ default "52.3" $initRoot.cadi_longitude }}" |
| 104 | - name: cadi_latitude |
| 105 | value: "{{ default "13.2" $initRoot.cadi_latitude }}" |
| 106 | #Hello specific. Clients don't don't need this, unless Registering with AAF Locator |
| 107 | - name: aaf_locator_public_fqdn |
| 108 | value: "{{ $initRoot.public_fqdn | default "" }}" |
| 109 | {{- end -}} |
| 110 | |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 111 | {{/* |
| 112 | This init container will import custom .pem certificates to truststoreONAPall.jks |
| 113 | Custom certificates must be placed in common/certInitializer/resources directory. |
| 114 | |
| 115 | The feature is enabled by setting Values.global.importCustomCertsEnabled = true |
| 116 | It can be used independently of aafEnabled, however it requires the same includes |
| 117 | as describe above for _initContainer. |
| 118 | |
| 119 | When AAF is enabled the truststoreONAPAll.jks (which contains AAF CA) will be used |
| 120 | to import custom certificates, otherwise the default java keystore will be used. |
| 121 | |
| 122 | The updated truststore file will be placed in /updatedTruststore and can be mounted per component |
| 123 | to a specific path by defining Values.certInitializer.truststoreMountpath (see _trustStoreVolumeMount) |
| 124 | The truststore file will be available to mount even if no custom certificates were imported. |
| 125 | */}} |
| 126 | {{- define "common.certInitializer._initImportCustomCertsContainer" -}} |
| 127 | {{- $dot := default . .dot -}} |
| 128 | {{- $initRoot := default $dot.Values.certInitializer .initRoot -}} |
| 129 | {{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }} |
| 130 | - name: {{ include "common.name" $dot }}-import-custom-certs |
Sylvain Desbureaux | 145140b | 2020-11-19 16:48:39 +0100 | [diff] [blame] | 131 | image: {{ include "repositoryGenerator.image.jre" $subchartDot }} |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 132 | imagePullPolicy: {{ $subchartDot.Values.global.pullPolicy | default $subchartDot.Values.pullPolicy }} |
| 133 | securityContext: |
| 134 | runAsUser: 0 |
| 135 | command: |
Sylvain Desbureaux | 3638967 | 2021-01-19 14:51:24 +0100 | [diff] [blame] | 136 | - /bin/sh |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 137 | - -c |
| 138 | - /root/import-custom-certs.sh |
| 139 | env: |
| 140 | - name: AAF_ENABLED |
| 141 | value: "{{ $subchartDot.Values.global.aafEnabled }}" |
| 142 | - name: TRUSTSTORE_OUTPUT_FILENAME |
| 143 | value: "{{ $initRoot.truststoreOutputFileName }}" |
| 144 | - name: TRUSTSTORE_PASSWORD |
| 145 | {{- include "common.secret.envFromSecretFast" (dict "global" $subchartDot "uid" "truststore-creds" "key" "password") | indent 6 }} |
| 146 | volumeMounts: |
| 147 | - mountPath: /certs |
| 148 | name: aaf-agent-certs |
Sylvain Desbureaux | bd94a04 | 2021-04-19 16:00:49 +0200 | [diff] [blame] | 149 | - mountPath: /more_certs |
| 150 | name: provided-custom-certs |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 151 | - mountPath: /root/import-custom-certs.sh |
| 152 | name: aaf-agent-certs |
| 153 | subPath: import-custom-certs.sh |
| 154 | - mountPath: /updatedTruststore |
| 155 | name: updated-truststore |
| 156 | {{- end -}} |
| 157 | |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 158 | {{- define "common.certInitializer._volumeMount" -}} |
| 159 | {{- $dot := default . .dot -}} |
| 160 | {{- $initRoot := default $dot.Values.certInitializer .initRoot -}} |
krishnaa96 | edf6f37 | 2020-09-09 09:30:58 +0530 | [diff] [blame] | 161 | - mountPath: {{ $initRoot.appMountPath }} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 162 | name: {{ include "common.certInitializer._aafConfigVolumeName" $dot }} |
| 163 | {{- end -}} |
| 164 | |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 165 | {{/* |
| 166 | This is used together with _initImportCustomCertsContainer |
| 167 | It mounts the updated truststore (with imported custom certificates) to the |
| 168 | truststoreMountpath defined in the values file for the component. |
| 169 | */}} |
| 170 | {{- define "common.certInitializer._trustStoreVolumeMount" -}} |
| 171 | {{- $dot := default . .dot -}} |
| 172 | {{- $initRoot := default $dot.Values.certInitializer .initRoot -}} |
| 173 | {{- if gt (len $initRoot.truststoreMountpath) 0 }} |
| 174 | - mountPath: {{ $initRoot.truststoreMountpath }}/{{ $initRoot.truststoreOutputFileName }} |
| 175 | name: updated-truststore |
| 176 | subPath: {{ $initRoot.truststoreOutputFileName }} |
| 177 | {{- end -}} |
| 178 | {{- end -}} |
| 179 | |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 180 | {{- define "common.certInitializer._volumes" -}} |
| 181 | {{- $dot := default . .dot -}} |
| 182 | {{- $initRoot := default $dot.Values.certInitializer .initRoot -}} |
Krzysztof Opasiak | 3e5fa9a | 2020-05-19 00:44:12 +0200 | [diff] [blame] | 183 | {{- $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 Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 184 | - name: {{ include "common.certInitializer._aafConfigVolumeName" $dot }} |
| 185 | emptyDir: |
| 186 | medium: Memory |
Krzysztof Opasiak | 95a5f84 | 2020-05-06 23:27:18 +0200 | [diff] [blame] | 187 | - name: aaf-agent-certs |
| 188 | configMap: |
Krzysztof Opasiak | 75f1875 | 2020-09-09 20:32:56 +0200 | [diff] [blame] | 189 | name: {{ tpl $subchartDot.Values.certsCMName $subchartDot }} |
Krzysztof Opasiak | 95a5f84 | 2020-05-06 23:27:18 +0200 | [diff] [blame] | 190 | defaultMode: 0700 |
Sylvain Desbureaux | bd94a04 | 2021-04-19 16:00:49 +0200 | [diff] [blame] | 191 | {{- if $dot.Values.global.importCustomCertsEnabled }} |
| 192 | - name: provided-custom-certs |
| 193 | {{- if $dot.Values.global.customCertsSecret }} |
| 194 | secret: |
| 195 | secretName: {{ $dot.Values.global.customCertsSecret }} |
| 196 | {{- else }} |
| 197 | {{- if $dot.Values.global.customCertsConfigMap }} |
| 198 | configMap: |
| 199 | name: {{ $dot.Values.global.customCertsConfigMap }} |
| 200 | {{- else }} |
| 201 | emptyDir: |
| 202 | medium: Memory |
| 203 | {{- end }} |
| 204 | {{- end }} |
| 205 | {{- end }} |
Krzysztof Opasiak | 108483c | 2020-05-14 01:44:30 +0200 | [diff] [blame] | 206 | - name: {{ include "common.certInitializer._aafAddConfigVolumeName" $dot }} |
| 207 | configMap: |
| 208 | name: {{ include "common.fullname" $subchartDot }}-add-config |
| 209 | defaultMode: 0700 |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 210 | {{- if $dot.Values.global.importCustomCertsEnabled }} |
| 211 | - name: updated-truststore |
| 212 | emptyDir: {} |
| 213 | {{- end -}} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 214 | {{- end -}} |
| 215 | |
| 216 | {{- define "common.certInitializer.initContainer" -}} |
| 217 | {{- $dot := default . .dot -}} |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 218 | {{- if $dot.Values.global.importCustomCertsEnabled }} |
| 219 | {{ include "common.certInitializer._initImportCustomCertsContainer" . }} |
| 220 | {{- end -}} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 221 | {{- if $dot.Values.global.aafEnabled }} |
| 222 | {{ include "common.certInitializer._initContainer" . }} |
| 223 | {{- end -}} |
| 224 | {{- end -}} |
| 225 | |
| 226 | {{- define "common.certInitializer.volumeMount" -}} |
| 227 | {{- $dot := default . .dot -}} |
| 228 | {{- if $dot.Values.global.aafEnabled }} |
| 229 | {{- include "common.certInitializer._volumeMount" . }} |
| 230 | {{- end -}} |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 231 | {{- if $dot.Values.global.importCustomCertsEnabled }} |
| 232 | {{- include "common.certInitializer._trustStoreVolumeMount" . }} |
| 233 | {{- end -}} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 234 | {{- end -}} |
| 235 | |
| 236 | {{- define "common.certInitializer.volumes" -}} |
| 237 | {{- $dot := default . .dot -}} |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 238 | {{- if or ($dot.Values.global.aafEnabled ) ($dot.Values.global.importCustomCertsEnabled) }} |
Krzysztof Opasiak | 020cdb9 | 2020-05-01 01:46:37 +0200 | [diff] [blame] | 239 | {{- include "common.certInitializer._volumes" . }} |
| 240 | {{- end -}} |
| 241 | {{- end -}} |