blob: f80b06b4d336da0fc22913b8a503b917125a6231 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
{{/*
# Copyright © 2021 Nokia
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
*/}}
{{/*
In order to use certServiceClient it is needed do define certificates array in target component values.yaml. Each
certificate will be requested from separate init container
Minimum example of array in target component values.yaml:
certificates:
- mountPath: /var/custom-certs
commonName: common-name
Full example (other fields are ignored):
certificates:
- mountPath: /var/custom-certs
caName: RA
keystore:
outputType:
- jks
commonName: common-name
dnsNames:
- dns-name-1
- dns-name-2
ipAddresses:
- 192.168.0.1
- 192.168.0.2
emailAddresses:
- email-1@onap.org
- email-2@onap.org
uris:
- http://uri-1.onap.org
- http://uri-2.onap.org
subject:
organization: Linux-Foundation
country: US
locality: San Francisco
province: California
organizationalUnit: ONAP
There also need to be some includes used in a target component deployment (indent values may need to be adjusted):
1. In initContainers section:
{{ include "common.certServiceClient.initContainer" . | indent 6 }}
2. In volumeMounts section of container using certificates:
{{ include "common.certServiceClient.volumeMounts" . | indent 10 }}
3. In volumes section:
{{ include "common.certServiceClient.volumes" . | indent 8 }}
*/}}
{{- define "common.certServiceClient.initContainer" -}}
{{- $dot := default . .dot -}}
{{- $initRoot := default $dot.Values.cmpv2Certificate.cmpv2Config .initRoot -}}
{{- $subchartGlobal := mergeOverwrite (deepCopy $initRoot.global) $dot.Values.global -}}
{{- if and $subchartGlobal.cmpv2Enabled (not $subchartGlobal.CMPv2CertManagerIntegration) -}}
{{- range $index, $certificate := $dot.Values.certificates -}}
{{/*# General certifiacate attributes #*/}}
{{- $commonName := (required "'commonName' for Certificate is required." $certificate.commonName) -}}
{{/*# SAN's #*/}}
{{- $dnsNames := default (list) $certificate.dnsNames -}}
{{- $ipAddresses := default (list) $certificate.ipAddresses -}}
{{- $uris := default (list) $certificate.uris -}}
{{- $emailAddresses := default (list) $certificate.emailAddresses -}}
{{- $sansList := concat $dnsNames $ipAddresses $uris $emailAddresses -}}
{{- $sans := join "," $sansList }}
{{/*# Subject #*/}}
{{- $organization := $subchartGlobal.certificate.default.subject.organization -}}
{{- $country := $subchartGlobal.certificate.default.subject.country -}}
{{- $locality := $subchartGlobal.certificate.default.subject.locality -}}
{{- $province := $subchartGlobal.certificate.default.subject.province -}}
{{- $orgUnit := $subchartGlobal.certificate.default.subject.organizationalUnit -}}
{{- if $certificate.subject -}}
{{- $organization := $certificate.subject.organization -}}
{{- $country := $certificate.subject.country -}}
{{- $locality := $certificate.subject.locality -}}
{{- $province := $certificate.subject.province -}}
{{- $orgUnit := $certificate.subject.organizationalUnit -}}
{{- end -}}
{{- $caName := default $subchartGlobal.platform.certServiceClient.envVariables.caName $certificate.caName -}}
{{- $outputType := $subchartGlobal.platform.certServiceClient.envVariables.outputType -}}
{{- if $certificate.keystore -}}
{{- $outputTypeList := (required "'outputType' in 'keystore' section is required." $certificate.keystore.outputType) -}}
{{- $outputType = mustFirst ($outputTypeList) | upper -}}
{{- end -}}
{{- $requestUrl := $subchartGlobal.platform.certServiceClient.envVariables.requestURL -}}
{{- $certPath := $subchartGlobal.platform.certServiceClient.envVariables.certPath -}}
{{- $requestTimeout := $subchartGlobal.platform.certServiceClient.envVariables.requestTimeout -}}
{{- $certificatesSecret:= $subchartGlobal.platform.certServiceClient.clientSecretName -}}
{{- $certificatesSecretMountPath := $subchartGlobal.platform.certServiceClient.certificatesSecretMountPath -}}
{{- $keystorePath := (printf "%s%s" $subchartGlobal.platform.certServiceClient.certificatesSecretMountPath $subchartGlobal.platform.certificates.keystoreKeyRef ) -}}
{{- $keystorePasswordSecret := $subchartGlobal.platform.certificates.keystorePasswordSecretName -}}
{{- $keystorePasswordSecretKey := $subchartGlobal.platform.certificates.keystorePasswordSecretKey -}}
{{- $truststorePath := (printf "%s%s" $subchartGlobal.platform.certServiceClient.certificatesSecretMountPath $subchartGlobal.platform.certificates.truststoreKeyRef ) -}}
{{- $truststorePasswordSecret := $subchartGlobal.platform.certificates.truststorePasswordSecretName -}}
{{- $truststorePasswordSecretKey := $subchartGlobal.platform.certificates.truststorePasswordSecretKey -}}
- name: certs-init-{{ $index }}
image: {{ include "repositoryGenerator.image.certserviceclient" $dot }}
imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $dot.Values.pullPolicy }}
env:
- name: REQUEST_URL
value: {{ $requestUrl | quote }}
- name: REQUEST_TIMEOUT
value: {{ $requestTimeout | quote }}
- name: OUTPUT_PATH
value: {{ $certPath | quote }}
- name: OUTPUT_TYPE
value: {{ $outputType | quote }}
- name: CA_NAME
value: {{ $caName | quote }}
- name: COMMON_NAME
value: {{ $commonName | quote }}
- name: SANS
value: {{ $sans | quote }}
- name: ORGANIZATION
value: {{ $organization | quote }}
- name: ORGANIZATION_UNIT
value: {{ $orgUnit | quote }}
- name: LOCATION
value: {{ $locality | quote }}
- name: STATE
value: {{ $province | quote }}
- name: COUNTRY
value: {{ $country | quote }}
- name: KEYSTORE_PATH
value: {{ $keystorePath | quote }}
- name: KEYSTORE_PASSWORD
valueFrom:
secretKeyRef:
name: {{ $keystorePasswordSecret | quote}}
key: {{ $keystorePasswordSecretKey | quote}}
- name: TRUSTSTORE_PATH
value: {{ $truststorePath | quote }}
- name: TRUSTSTORE_PASSWORD
valueFrom:
secretKeyRef:
name: {{ $truststorePasswordSecret | quote}}
key: {{ $truststorePasswordSecretKey | quote}}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: {{ $certPath }}
name: cmpv2-certs-volume-{{ $index }}
- mountPath: {{ $certificatesSecretMountPath }}
name: certservice-tls-volume
{{- end -}}
{{- end -}}
{{- end -}}
{{- define "common.certServiceClient.volumes" -}}
{{- $dot := default . .dot -}}
{{- $initRoot := default $dot.Values.cmpv2Certificate.cmpv2Config .initRoot -}}
{{- $subchartGlobal := mergeOverwrite (deepCopy $initRoot.global) $dot.Values.global -}}
{{- if and $subchartGlobal.cmpv2Enabled (not $subchartGlobal.CMPv2CertManagerIntegration) -}}
{{- $certificatesSecretName := $subchartGlobal.platform.certificates.clientSecretName -}}
- name: certservice-tls-volume
secret:
secretName: {{ $certificatesSecretName }}
{{ range $index, $certificate := $dot.Values.certificates -}}
- name: cmpv2-certs-volume-{{ $index }}
emptyDir:
medium: Memory
{{- end -}}
{{- end -}}
{{- end -}}
{{- define "common.certServiceClient.volumeMounts" -}}
{{- $dot := default . .dot -}}
{{- $initRoot := default $dot.Values.cmpv2Certificate.cmpv2Config .initRoot -}}
{{- $subchartGlobal := mergeOverwrite (deepCopy $initRoot.global) $dot.Values.global -}}
{{- if and $subchartGlobal.cmpv2Enabled (not $subchartGlobal.CMPv2CertManagerIntegration) -}}
{{- range $index, $certificate := $dot.Values.certificates -}}
{{- $mountPath := $certificate.mountPath -}}
- mountPath: {{ $mountPath }}
name: cmpv2-certs-volume-{{ $index }}
{{ end -}}
{{- end -}}
{{- end -}}
|