Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 1 | {{/* |
| 2 | #============LICENSE_START======================================================== |
| 3 | # ================================================================================ |
Jack Lucas | 1e18421 | 2022-03-08 13:35:24 -0500 | [diff] [blame^] | 4 | # Copyright (c) 2021-2022 J. F. Lucas. All rights reserved. |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 5 | # Copyright (c) 2021 AT&T Intellectual Property. All rights reserved. |
Piotr Marcinkiewicz | 7062518 | 2021-04-29 17:02:37 +0200 | [diff] [blame] | 6 | # Copyright (c) 2021 Nokia. All rights reserved. |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 7 | # Copyright (c) 2021 Nordix Foundation. |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 8 | # ================================================================================ |
| 9 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | # you may not use this file except in compliance with the License. |
| 11 | # You may obtain a copy of the License at |
| 12 | # |
| 13 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | # |
| 15 | # Unless required by applicable law or agreed to in writing, software |
| 16 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | # See the License for the specific language governing permissions and |
| 19 | # limitations under the License. |
| 20 | # ============LICENSE_END========================================================= |
| 21 | */}} |
| 22 | {{/* |
Jack Lucas | cbca57d | 2021-04-05 09:49:46 -0400 | [diff] [blame] | 23 | For internal use only! |
| 24 | |
| 25 | dcaegen2-services-common._ms-specific-env-vars: |
| 26 | This template generates a list of microservice-specific environment variables |
| 27 | as specified in .Values.applicationEnv. The |
| 28 | dcaegen2-services-common.microServiceDeployment uses this template |
| 29 | to add the microservice-specific environment variables to the microservice's container. |
| 30 | These environment variables are in addition to a standard set of environment variables |
| 31 | provided to all microservices. |
| 32 | |
| 33 | The template expects a single argument, pointing to the caller's global context. |
| 34 | |
| 35 | Microservice-specific environment variables can be specified in two ways: |
| 36 | 1. As literal string values. |
| 37 | 2. As values that are sourced from a secret, identified by the secret's |
| 38 | uid and the key within the secret that provides the value. |
| 39 | |
| 40 | The following example shows an example of each type. The example assumes |
| 41 | that a secret has been created using the OOM common secret mechanism, with |
| 42 | a secret uid "example-secret" and a key called "password". |
| 43 | |
| 44 | applicationEnv: |
| 45 | APPLICATION_PASSWORD: |
| 46 | secretUid: example-secret |
| 47 | key: password |
| 48 | APPLICATION_EXAMPLE: "An example value" |
| 49 | |
| 50 | The example would set two environment variables on the microservice's container, |
| 51 | one called "APPLICATION_PASSWORD" with the value set from the "password" key in |
| 52 | the secret with uid "example-secret", and one called "APPLICATION_EXAMPLE" set to |
| 53 | the the literal string "An example value". |
| 54 | */}} |
| 55 | {{- define "dcaegen2-services-common._ms-specific-env-vars" -}} |
| 56 | {{- $global := . }} |
| 57 | {{- if .Values.applicationEnv }} |
| 58 | {{- range $envName, $envValue := .Values.applicationEnv }} |
| 59 | {{- if kindIs "string" $envValue }} |
| 60 | - name: {{ $envName }} |
| 61 | value: {{ $envValue | quote }} |
| 62 | {{- else }} |
| 63 | {{ if or (not $envValue.secretUid) (not $envValue.key) }} |
| 64 | {{ fail (printf "Env %s definition is not a string and does not contain secretUid or key fields" $envName) }} |
| 65 | {{- end }} |
| 66 | - name: {{ $envName }} |
| 67 | {{- include "common.secret.envFromSecretFast" (dict "global" $global "uid" $envValue.secretUid "key" $envValue.key) | indent 2 }} |
| 68 | {{- end -}} |
| 69 | {{- end }} |
| 70 | {{- end }} |
| 71 | {{- end -}} |
| 72 | {{/* |
Jack Lucas | e5f7160 | 2021-05-10 12:00:02 -0400 | [diff] [blame] | 73 | For internal use only! |
| 74 | |
| 75 | dcaegen2-services-common._externalVolumes: |
| 76 | This template generates a list of volumes associated with the pod, |
| 77 | based on information provided in .Values.externalVolumes. This |
| 78 | template works in conjunction with dcaegen2-services-common._externalVolumeMounts |
| 79 | to give the microservice access to data in volumes created else. |
| 80 | This initial implementation supports ConfigMaps only, as this is the only |
| 81 | external volume mounting required by current microservices. |
| 82 | |
Jack Lucas | b880f89 | 2021-06-07 16:40:31 -0400 | [diff] [blame] | 83 | .Values.externalVolumes is a list of objects. Each object has 3 required fields and 2 optional fields: |
Jack Lucas | e5f7160 | 2021-05-10 12:00:02 -0400 | [diff] [blame] | 84 | - name: the name of the resource (in the current implementation, it must be a ConfigMap) |
| 85 | that is to be set up as a volume. The value is a case sensitive string. Because the |
| 86 | names of resources are sometimes set at deployment time (for instance, to prefix the Helm |
| 87 | release to the name), the string can be a Helm template fragment that will be expanded at |
| 88 | deployment time. |
| 89 | - type: the type of the resource (in the current implementation, only "ConfigMap" is supported). |
| 90 | The value is a case-INsensitive string. |
| 91 | - mountPoint: the path to the mount point for the volume in the container file system. The |
| 92 | value is a case-sensitive string. |
| 93 | - readOnly: (Optional) Boolean flag. Set to true to mount the volume as read-only. |
| 94 | Defaults to false. |
Jack Lucas | b880f89 | 2021-06-07 16:40:31 -0400 | [diff] [blame] | 95 | - optional: (Optional) Boolean flag. Set to true to make the configMap optional (i.e., to allow the |
| 96 | microservice's pod to start even if the configMap doesn't exist). If set to false, the configMap must |
| 97 | be present in order for the microservice's pod to start. Defaults to true. (Note that this |
| 98 | default is the opposite of the Kubernetes default. We've done this to be consistent with the behavior |
| 99 | of the DCAE Cloudify plugin for Kubernetes [k8splugin], which always set "optional" to true.) |
Jack Lucas | e5f7160 | 2021-05-10 12:00:02 -0400 | [diff] [blame] | 100 | |
| 101 | Here is an example fragment from a values.yaml file for a microservice: |
| 102 | |
| 103 | externalVolumes: |
| 104 | - name: my-example-configmap |
| 105 | type: configmap |
| 106 | mountPath: /opt/app/config |
| 107 | - name: '{{ include "common.release" . }}-another-example' |
| 108 | type: configmap |
| 109 | mountPath: /opt/app/otherconfig |
Jack Lucas | b880f89 | 2021-06-07 16:40:31 -0400 | [diff] [blame] | 110 | optional: false |
Jack Lucas | e5f7160 | 2021-05-10 12:00:02 -0400 | [diff] [blame] | 111 | */}} |
| 112 | {{- define "dcaegen2-services-common._externalVolumes" -}} |
| 113 | {{- $global := . -}} |
| 114 | {{- if .Values.externalVolumes }} |
| 115 | {{- range $vol := .Values.externalVolumes }} |
| 116 | {{- if eq (lower $vol.type) "configmap" }} |
Jack Lucas | b880f89 | 2021-06-07 16:40:31 -0400 | [diff] [blame] | 117 | {{- $vname := (tpl $vol.name $global) -}} |
| 118 | {{- $opt := hasKey $vol "optional" | ternary $vol.optional true }} |
Jack Lucas | e5f7160 | 2021-05-10 12:00:02 -0400 | [diff] [blame] | 119 | - configMap: |
| 120 | defaultMode: 420 |
| 121 | name: {{ $vname }} |
Jack Lucas | b880f89 | 2021-06-07 16:40:31 -0400 | [diff] [blame] | 122 | optional: {{ $opt }} |
Jack Lucas | e5f7160 | 2021-05-10 12:00:02 -0400 | [diff] [blame] | 123 | name: {{ $vname }} |
| 124 | {{- end }} |
| 125 | {{- end }} |
| 126 | {{- end }} |
| 127 | {{- end }} |
| 128 | {{/* |
| 129 | For internal use only! |
| 130 | |
| 131 | dcaegen2-services-common._externalVolumeMounts: |
| 132 | This template generates a list of volume mounts for the microservice container, |
| 133 | based on information provided in .Values.externalVolumes. This |
| 134 | template works in conjunction with dcaegen2-services-common._externalVolumes |
| 135 | to give the microservice access to data in volumes created else. |
| 136 | This initial implementation supports ConfigMaps only, as this is the only |
| 137 | external volume mounting required by current microservices. |
| 138 | |
| 139 | See the documentation for dcaegen2-services-common._externalVolumes for |
| 140 | details on how external volumes are specified in the values.yaml file for |
| 141 | the microservice. |
| 142 | */}} |
| 143 | {{- define "dcaegen2-services-common._externalVolumeMounts" -}} |
| 144 | {{- $global := . -}} |
| 145 | {{- if .Values.externalVolumes }} |
| 146 | {{- range $vol := .Values.externalVolumes }} |
| 147 | {{- if eq (lower $vol.type) "configmap" }} |
| 148 | {{- $vname := (tpl $vol.name $global) -}} |
| 149 | {{- $readOnly := $vol.readOnly | default false }} |
| 150 | - mountPath: {{ $vol.mountPath }} |
| 151 | name: {{ $vname }} |
| 152 | readOnly: {{ $readOnly }} |
| 153 | {{- end }} |
| 154 | {{- end }} |
| 155 | {{- end }} |
| 156 | {{- end }} |
| 157 | {{/* |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 158 | dcaegen2-services-common.microserviceDeployment: |
| 159 | This template produces a Kubernetes Deployment for a DCAE microservice. |
| 160 | |
| 161 | All DCAE microservices currently use very similar Deployments. Having a |
| 162 | common template eliminates a lot of repetition in the individual charts |
| 163 | for each microservice. |
| 164 | |
| 165 | The template expects the full chart context as input. A chart for a |
| 166 | DCAE microservice references this template using: |
| 167 | {{ include "dcaegen2-services-common.microserviceDeployment" . }} |
| 168 | The template directly references data in .Values, and indirectly (through its |
| 169 | use of templates from the ONAP "common" collection) references data in |
| 170 | .Release. |
| 171 | |
| 172 | The exact content of the Deployment generated from this template |
| 173 | depends on the content of .Values. |
| 174 | |
| 175 | The Deployment always includes a single Pod, with a container that uses |
| 176 | the DCAE microservice image. |
| 177 | |
| 178 | The Deployment Pod may also include a logging sidecar container. |
Jack Lucas | 1e18421 | 2022-03-08 13:35:24 -0500 | [diff] [blame^] | 179 | The sidecar is included if .Values.log.path is set. The |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 180 | logging sidecar and the DCAE microservice container share a |
| 181 | volume where the microservice logs are written. |
| 182 | |
| 183 | The Deployment includes an initContainer that pushes the |
| 184 | microservice's initial configuration (from .Values.applicationConfig) |
| 185 | into Consul. All DCAE microservices retrieve their initial |
| 186 | configurations by making an API call to a DCAE platform component called |
| 187 | the config-binding-service. The config-binding-service currently |
| 188 | retrieves configuration information from Consul. |
| 189 | |
| 190 | The Deployment also includes an initContainer that checks for the |
| 191 | readiness of other components that the microservice relies on. |
| 192 | This container is generated by the "common.readinessCheck.waitfor" |
| 193 | template. |
| 194 | |
| 195 | If the microservice acts as a TLS client or server, the Deployment will |
| 196 | include an initContainer that retrieves certificate information from |
| 197 | the AAF certificate manager. The information is mounted at the |
| 198 | mount point specified in .Values.certDirectory. If the microservice is |
| 199 | a TLS server (indicated by setting .Values.tlsServer to true), the |
| 200 | certificate information will include a server cert and key, in various |
| 201 | formats. It will also include the AAF CA cert. If the microservice is |
| 202 | a TLS client only (indicated by setting .Values.tlsServer to false), the |
| 203 | certificate information includes only the AAF CA cert. |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 204 | |
| 205 | Deployed POD may also include a Policy-sync sidecar container. |
| 206 | The sidecar is included if .Values.policies is set. The |
| 207 | Policy-sync sidecar polls PolicyEngine (PDP) periodically based |
| 208 | on .Values.policies.duration and configuration retrieved is shared with |
| 209 | DCAE Microservice container by common volume. Policy can be retrieved based on |
guillaume.lambert | 30ec390 | 2021-09-14 12:32:24 +0200 | [diff] [blame] | 210 | list of policyID or filter. An optional policyRelease parameter can be specified |
Vijay Venkatesh Kumar | 6259f50 | 2021-07-26 16:53:11 -0400 | [diff] [blame] | 211 | to override the default policy helm release (used for retreiving the secret containing |
| 212 | pdp username and password) |
| 213 | |
| 214 | Following is example policy config override |
| 215 | |
| 216 | dcaePolicySyncImage: onap/org.onap.dcaegen2.deployments.dcae-services-policy-sync:1.0.1 |
| 217 | policies: |
| 218 | duration: 300 |
| 219 | policyRelease: "onap" |
| 220 | policyID: | |
| 221 | '["onap.vfirewall.tca","onap.vdns.tca"]' |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 222 | */}} |
| 223 | |
| 224 | {{- define "dcaegen2-services-common.microserviceDeployment" -}} |
Jack Lucas | 1e18421 | 2022-03-08 13:35:24 -0500 | [diff] [blame^] | 225 | {{- $log := default dict .Values.log -}} |
| 226 | {{- $logDir := default "" $log.path -}} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 227 | {{- $certDir := default "" .Values.certDirectory . -}} |
| 228 | {{- $tlsServer := default "" .Values.tlsServer -}} |
Vijay Venkatesh Kumar | 6259f50 | 2021-07-26 16:53:11 -0400 | [diff] [blame] | 229 | {{- $commonRelease := print (include "common.release" .) -}} |
| 230 | {{- $policy := default dict .Values.policies -}} |
| 231 | {{- $policyRls := default $commonRelease $policy.policyRelease -}} |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 232 | {{- $drFeedConfig := default "" .Values.drFeedConfig -}} |
Jack Lucas | 4b22da9 | 2021-12-09 21:54:10 -0500 | [diff] [blame] | 233 | {{- $dcaeName := print (include "common.fullname" .) }} |
| 234 | {{- $dcaeLabel := (dict "dcaeMicroserviceName" $dcaeName) -}} |
| 235 | {{- $dot := . -}} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 236 | apiVersion: apps/v1 |
| 237 | kind: Deployment |
Jack Lucas | 4b22da9 | 2021-12-09 21:54:10 -0500 | [diff] [blame] | 238 | metadata: {{- include "common.resourceMetadata" (dict "dot" $dot "labels" $dcaeLabel) | nindent 2 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 239 | spec: |
| 240 | replicas: 1 |
| 241 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 242 | template: |
| 243 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
| 244 | spec: |
| 245 | initContainers: |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 246 | {{- if not $drFeedConfig }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 247 | - command: |
| 248 | - sh |
| 249 | args: |
| 250 | - -c |
| 251 | - | |
| 252 | {{- range $var := .Values.customEnvVars }} |
| 253 | export {{ $var.name }}="{{ $var.value }}"; |
| 254 | {{- end }} |
| 255 | cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done |
| 256 | env: |
| 257 | {{- range $cred := .Values.credentials }} |
| 258 | - name: {{ $cred.name }} |
| 259 | {{- include "common.secret.envFromSecretFast" (dict "global" $ "uid" $cred.uid "key" $cred.key) | indent 10 }} |
| 260 | {{- end }} |
| 261 | volumeMounts: |
| 262 | - mountPath: /config-input |
| 263 | name: app-config-input |
| 264 | - mountPath: /config |
| 265 | name: app-config |
| 266 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
| 267 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 268 | name: {{ include "common.name" . }}-update-config |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 269 | {{- end }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 270 | {{ include "common.readinessCheck.waitFor" . | indent 6 | trim }} |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 271 | {{- include "common.dmaap.provisioning.initContainer" . | nindent 6 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 272 | - name: init-consul |
| 273 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.consulLoaderImage }} |
| 274 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 275 | args: |
| 276 | - --key-yaml |
| 277 | - "{{ include "common.name" . }}|/app-config/application_config.yaml" |
Jack Lucas | ec09fd5 | 2021-11-01 16:54:12 -0400 | [diff] [blame] | 278 | env: |
| 279 | - name: CONSUL_HOST |
| 280 | value: {{ .Values.consulHost | default "consul-server-ui" }}.{{ include "common.namespace" . }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 281 | resources: {{ include "common.resources" . | nindent 2 }} |
| 282 | volumeMounts: |
| 283 | - mountPath: /app-config |
| 284 | name: app-config |
| 285 | {{- if $certDir }} |
| 286 | - name: init-tls |
| 287 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.tlsImage }} |
| 288 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 289 | env: |
| 290 | - name: TLS_SERVER |
| 291 | value: {{ $tlsServer | quote }} |
| 292 | - name: POD_IP |
| 293 | valueFrom: |
| 294 | fieldRef: |
| 295 | apiVersion: v1 |
| 296 | fieldPath: status.podIP |
| 297 | resources: {{ include "common.resources" . | nindent 2 }} |
| 298 | volumeMounts: |
| 299 | - mountPath: /opt/app/osaaf |
| 300 | name: tls-info |
| 301 | {{- end }} |
Remigiusz Janeczek | 9b00b56 | 2021-04-26 14:37:57 +0200 | [diff] [blame] | 302 | {{ include "dcaegen2-services-common._certPostProcessor" . | nindent 4 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 303 | containers: |
| 304 | - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
| 305 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 306 | name: {{ include "common.name" . }} |
| 307 | env: |
Bartosz Gardziejewski | 041a89a | 2021-05-19 08:05:00 +0200 | [diff] [blame] | 308 | {{- range $cred := .Values.credentials }} |
| 309 | - name: {{ $cred.name }} |
| 310 | {{- include "common.secret.envFromSecretFast" (dict "global" $ "uid" $cred.uid "key" $cred.key) | indent 10 }} |
| 311 | {{- end }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 312 | {{- if $certDir }} |
| 313 | - name: DCAE_CA_CERTPATH |
Remigiusz Janeczek | 9b00b56 | 2021-04-26 14:37:57 +0200 | [diff] [blame] | 314 | value: {{ $certDir }}/cacert.pem |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 315 | {{- end }} |
| 316 | - name: CONSUL_HOST |
| 317 | value: consul-server.onap |
| 318 | - name: CONFIG_BINDING_SERVICE |
| 319 | value: config-binding-service |
| 320 | - name: CBS_CONFIG_URL |
| 321 | value: https://config-binding-service:10443/service_component_all/{{ include "common.name" . }} |
| 322 | - name: POD_IP |
| 323 | valueFrom: |
| 324 | fieldRef: |
| 325 | apiVersion: v1 |
| 326 | fieldPath: status.podIP |
Jack Lucas | cbca57d | 2021-04-05 09:49:46 -0400 | [diff] [blame] | 327 | {{- include "dcaegen2-services-common._ms-specific-env-vars" . | nindent 8 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 328 | {{- if .Values.service }} |
| 329 | ports: {{ include "common.containerPorts" . | nindent 10 }} |
| 330 | {{- end }} |
| 331 | {{- if .Values.readiness }} |
| 332 | readinessProbe: |
| 333 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds | default 5 }} |
| 334 | periodSeconds: {{ .Values.readiness.periodSeconds | default 15 }} |
| 335 | timeoutSeconds: {{ .Values.readiness.timeoutSeconds | default 1 }} |
| 336 | {{- $probeType := .Values.readiness.type | default "httpGet" -}} |
| 337 | {{- if eq $probeType "httpGet" }} |
| 338 | httpGet: |
| 339 | scheme: {{ .Values.readiness.scheme }} |
| 340 | path: {{ .Values.readiness.path }} |
| 341 | port: {{ .Values.readiness.port }} |
| 342 | {{- end }} |
| 343 | {{- if eq $probeType "exec" }} |
| 344 | exec: |
| 345 | command: |
| 346 | {{- range $cmd := .Values.readiness.command }} |
| 347 | - {{ $cmd }} |
| 348 | {{- end }} |
| 349 | {{- end }} |
| 350 | {{- end }} |
| 351 | resources: {{ include "common.resources" . | nindent 2 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 352 | volumeMounts: |
Bartosz Gardziejewski | 4bb3da3 | 2021-04-21 12:08:50 +0200 | [diff] [blame] | 353 | - mountPath: /app-config |
| 354 | name: app-config |
Bartosz Gardziejewski | 041a89a | 2021-05-19 08:05:00 +0200 | [diff] [blame] | 355 | - mountPath: /app-config-input |
| 356 | name: app-config-input |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 357 | {{- if $logDir }} |
| 358 | - mountPath: {{ $logDir}} |
Maciej Wereski | 7000a7c | 2021-12-16 12:24:06 +0100 | [diff] [blame] | 359 | name: logs |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 360 | {{- end }} |
| 361 | {{- if $certDir }} |
| 362 | - mountPath: {{ $certDir }} |
| 363 | name: tls-info |
Remigiusz Janeczek | 7b09503 | 2021-05-20 19:39:44 +0200 | [diff] [blame] | 364 | {{- if (include "dcaegen2-services-common.shouldUseCmpv2Certificates" .) -}} |
Remigiusz Janeczek | 9b00b56 | 2021-04-26 14:37:57 +0200 | [diff] [blame] | 365 | {{- include "common.certManager.volumeMountsReadOnly" . | nindent 8 -}} |
| 366 | {{- end -}} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 367 | {{- end }} |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 368 | {{- if $policy }} |
| 369 | - name: policy-shared |
| 370 | mountPath: /etc/policies |
| 371 | {{- end }} |
Jack Lucas | e5f7160 | 2021-05-10 12:00:02 -0400 | [diff] [blame] | 372 | {{- include "dcaegen2-services-common._externalVolumeMounts" . | nindent 8 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 373 | {{- if $logDir }} |
Maciej Wereski | 7000a7c | 2021-12-16 12:24:06 +0100 | [diff] [blame] | 374 | {{ include "common.log.sidecar" . | nindent 6 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 375 | {{- end }} |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 376 | {{- if $policy }} |
| 377 | - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.dcaePolicySyncImage }} |
| 378 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 379 | name: policy-sync |
| 380 | env: |
| 381 | - name: POD_IP |
| 382 | valueFrom: |
| 383 | fieldRef: |
| 384 | apiVersion: v1 |
| 385 | fieldPath: status.podIP |
| 386 | - name: POLICY_SYNC_PDP_USER |
| 387 | valueFrom: |
| 388 | secretKeyRef: |
Vijay Venkatesh Kumar | 6259f50 | 2021-07-26 16:53:11 -0400 | [diff] [blame] | 389 | name: {{ $policyRls }}-policy-xacml-pdp-api-creds |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 390 | key: login |
| 391 | - name: POLICY_SYNC_PDP_PASS |
| 392 | valueFrom: |
| 393 | secretKeyRef: |
Vijay Venkatesh Kumar | 6259f50 | 2021-07-26 16:53:11 -0400 | [diff] [blame] | 394 | name: {{ $policyRls }}-policy-xacml-pdp-api-creds |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 395 | key: password |
| 396 | - name: POLICY_SYNC_PDP_URL |
Piotr Marcinkiewicz | 7062518 | 2021-04-29 17:02:37 +0200 | [diff] [blame] | 397 | value : http{{ if (include "common.needTLS" .) }}s{{ end }}://policy-xacml-pdp:6969 |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 398 | - name: POLICY_SYNC_OUTFILE |
| 399 | value : "/etc/policies/policies.json" |
| 400 | - name: POLICY_SYNC_V1_DECISION_ENDPOINT |
| 401 | value : "policy/pdpx/v1/decision" |
| 402 | {{- if $policy.filter }} |
| 403 | - name: POLICY_SYNC_FILTER |
| 404 | value: {{ $policy.filter }} |
| 405 | {{- end -}} |
| 406 | {{- if $policy.policyID }} |
| 407 | - name: POLICY_SYNC_ID |
| 408 | value: {{ $policy.policyID }} |
| 409 | {{- end -}} |
| 410 | {{- if $policy.duration }} |
| 411 | - name: POLICY_SYNC_DURATION |
Vijay Venkatesh Kumar | c269b26 | 2021-06-29 13:49:15 -0400 | [diff] [blame] | 412 | value: "{{ $policy.duration }}" |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 413 | {{- end }} |
| 414 | resources: {{ include "common.resources" . | nindent 2 }} |
| 415 | volumeMounts: |
| 416 | - mountPath: /etc/policies |
| 417 | name: policy-shared |
| 418 | {{- if $certDir }} |
| 419 | - mountPath: /opt/ca-certificates/ |
| 420 | name: tls-info |
| 421 | {{- end }} |
| 422 | {{- end }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 423 | hostname: {{ include "common.name" . }} |
farida azmy | cb03ac7 | 2021-09-12 16:14:12 +0200 | [diff] [blame] | 424 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 425 | volumes: |
| 426 | - configMap: |
| 427 | defaultMode: 420 |
| 428 | name: {{ include "common.fullname" . }}-application-config-configmap |
| 429 | name: app-config-input |
| 430 | - emptyDir: |
| 431 | medium: Memory |
| 432 | name: app-config |
| 433 | {{- if $logDir }} |
| 434 | - emptyDir: {} |
Maciej Wereski | 7000a7c | 2021-12-16 12:24:06 +0100 | [diff] [blame] | 435 | name: logs |
| 436 | {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 6 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 437 | {{- end }} |
| 438 | {{- if $certDir }} |
| 439 | - emptyDir: {} |
| 440 | name: tls-info |
Remigiusz Janeczek | 7b09503 | 2021-05-20 19:39:44 +0200 | [diff] [blame] | 441 | {{ if (include "dcaegen2-services-common.shouldUseCmpv2Certificates" .) -}} |
Remigiusz Janeczek | 9b00b56 | 2021-04-26 14:37:57 +0200 | [diff] [blame] | 442 | {{ include "common.certManager.volumesReadOnly" . | nindent 6 }} |
| 443 | {{- end }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 444 | {{- end }} |
vv770d | e8c5c68 | 2021-04-15 12:21:36 -0400 | [diff] [blame] | 445 | {{- if $policy }} |
| 446 | - name: policy-shared |
| 447 | emptyDir: {} |
| 448 | {{- end }} |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 449 | {{- include "common.dmaap.provisioning._volumes" . | nindent 6 -}} |
Jack Lucas | e5f7160 | 2021-05-10 12:00:02 -0400 | [diff] [blame] | 450 | {{- include "dcaegen2-services-common._externalVolumes" . | nindent 6 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 451 | imagePullSecrets: |
| 452 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 453 | {{ end -}} |
Remigiusz Janeczek | 9b00b56 | 2021-04-26 14:37:57 +0200 | [diff] [blame] | 454 | |
| 455 | {{/* |
| 456 | For internal use |
| 457 | |
| 458 | Template to attach CertPostProcessor which merges CMPv2 truststore with AAF truststore |
| 459 | and swaps keystore files. |
| 460 | */}} |
| 461 | {{- define "dcaegen2-services-common._certPostProcessor" -}} |
| 462 | {{- $certDir := default "" .Values.certDirectory . -}} |
Remigiusz Janeczek | 7b09503 | 2021-05-20 19:39:44 +0200 | [diff] [blame] | 463 | {{- if (include "dcaegen2-services-common.shouldUseCmpv2Certificates" .) -}} |
Remigiusz Janeczek | 9b00b56 | 2021-04-26 14:37:57 +0200 | [diff] [blame] | 464 | {{- $cmpv2Certificate := (index .Values.certificates 0) -}} |
| 465 | {{- $cmpv2CertificateDir := $cmpv2Certificate.mountPath -}} |
| 466 | {{- $certType := "pem" -}} |
| 467 | {{- if $cmpv2Certificate.keystore -}} |
| 468 | {{- $certType = (index $cmpv2Certificate.keystore.outputType 0) -}} |
| 469 | {{- end -}} |
Piotr Marcinkiewicz | 7062518 | 2021-04-29 17:02:37 +0200 | [diff] [blame] | 470 | {{- $truststoresPaths := printf "%s/%s:%s/%s" $certDir "cacert.pem" $cmpv2CertificateDir "cacert.pem" -}} |
| 471 | {{- $truststoresPasswordPaths := ":" -}} |
| 472 | {{- $keystoreSourcePaths := printf "%s/%s:%s/%s" $cmpv2CertificateDir "cert.pem" $cmpv2CertificateDir "key.pem" -}} |
Remigiusz Janeczek | 9b00b56 | 2021-04-26 14:37:57 +0200 | [diff] [blame] | 473 | {{- $keystoreDestinationPaths := printf "%s/%s:%s/%s" $certDir "cert.pem" $certDir "key.pem" -}} |
| 474 | {{- if not (eq $certType "pem") -}} |
| 475 | {{- $truststoresPaths = printf "%s/%s:%s/%s.%s" $certDir "trust.jks" $cmpv2CertificateDir "truststore" $certType -}} |
| 476 | {{- $truststoresPasswordPaths = printf "%s/%s:%s/%s" $certDir "trust.pass" $cmpv2CertificateDir "truststore.pass" -}} |
| 477 | {{- $keystoreSourcePaths = printf "%s/%s.%s:%s/%s" $cmpv2CertificateDir "keystore" $certType $cmpv2CertificateDir "keystore.pass" -}} |
| 478 | {{- $keystoreDestinationPaths = printf "%s/%s.%s:%s/%s.pass" $certDir "cert" $certType $certDir $certType -}} |
| 479 | {{- end }} |
| 480 | - name: cert-post-processor |
| 481 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.certPostProcessorImage }} |
| 482 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 483 | resources: |
| 484 | {{- include "common.resources" . | nindent 4 }} |
| 485 | volumeMounts: |
| 486 | - mountPath: {{ $certDir }} |
| 487 | name: tls-info |
| 488 | {{- include "common.certManager.volumeMountsReadOnly" . | nindent 4 }} |
| 489 | env: |
| 490 | - name: TRUSTSTORES_PATHS |
| 491 | value: {{ $truststoresPaths | quote}} |
| 492 | - name: TRUSTSTORES_PASSWORDS_PATHS |
| 493 | value: {{ $truststoresPasswordPaths | quote }} |
| 494 | - name: KEYSTORE_SOURCE_PATHS |
| 495 | value: {{ $keystoreSourcePaths | quote }} |
| 496 | - name: KEYSTORE_DESTINATION_PATHS |
| 497 | value: {{ $keystoreDestinationPaths | quote }} |
| 498 | {{- end }} |
| 499 | {{- end -}} |
Remigiusz Janeczek | 7b09503 | 2021-05-20 19:39:44 +0200 | [diff] [blame] | 500 | |
| 501 | {{/* |
| 502 | Template returns string "true" if CMPv2 certificates should be used and nothing (so it can be used in with statements) |
| 503 | when they shouldn't. Example use: |
| 504 | {{- if (include "dcaegen2-services-common.shouldUseCmpv2Certificates" .) -}} |
| 505 | |
| 506 | */}} |
| 507 | {{- define "dcaegen2-services-common.shouldUseCmpv2Certificates" -}} |
| 508 | {{- $certDir := default "" .Values.certDirectory . -}} |
Piotr Marcinkiewicz | 598f2d8 | 2021-06-01 12:36:13 +0200 | [diff] [blame] | 509 | {{- if (and $certDir .Values.certificates .Values.global.cmpv2Enabled .Values.useCmpv2Certificates) -}} |
Remigiusz Janeczek | 7b09503 | 2021-05-20 19:39:44 +0200 | [diff] [blame] | 510 | true |
| 511 | {{- end -}} |
| 512 | {{- end -}} |