Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / policy / components / policy-clamp-runtime-acm / templates / deployment.yaml
1 {{/*
2 #  ============LICENSE_START=======================================================
3 #   Copyright (C) 2021-2022 Nordix Foundation.
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 #  SPDX-License-Identifier: Apache-2.0
18 #  ============LICENSE_END=========================================================
19 */}}
20
21 apiVersion: apps/v1
22 kind: Deployment
23 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24 spec:
25   selector: {{- include "common.selectors" . | nindent 4 }}
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
29     spec:
30       initContainers:
31       - command:
32         - /app/ready.py
33         args:
34         - --job-name
35         - {{ include "common.release" . }}-policy-galera-config
36         env:
37         - name: NAMESPACE
38           valueFrom:
39             fieldRef:
40               apiVersion: v1
41               fieldPath: metadata.namespace
42         image: {{ include "repositoryGenerator.image.readiness" . }}
43         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44         name: {{ include "common.name" . }}-readiness
45       - command:
46         - sh
47         args:
48         - -c
49         - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
50         env:
51         - name: SQL_USER
52           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
53         - name: SQL_PASSWORD
54           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
55         - name: RUNTIME_USER
56             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "runtime-secret" "key" "login") | indent 10 }}
57         - name: RUNTIME_PASSWORD
58           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "runtime-secret" "key" "password") | indent 10 }}
59 {{- if .Values.config.useStrimziKafka }}
60         - name: JAASLOGIN
61           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "policy-kafka-user" "key" "sasl.jaas.config") | indent 10 }}
62 {{- end }}
63         volumeMounts:
64         - mountPath: /config-input
65           name: ac-runtime-config
66         - mountPath: /config
67           name: ac-runtime-config-processed
68         image: {{ include "repositoryGenerator.image.envsubst" . }}
69         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
70         name: {{ include "common.name" . }}-update-config
71 {{ include "common.certInitializer.initContainer" . | indent 6 }}
72       containers:
73         - name: {{ include "common.name" . }}
74           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
75           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
76 {{- if .Values.global.aafEnabled }}
77           command: ["sh","-c"]
78           args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
79                   /opt/app/policy/clamp/bin/acm-runtime.sh /opt/app/policy/clamp/etc/mounted/acRuntimeParameters.yaml"]
80 {{- else }}
81           command: ["/opt/app/policy/clamp/bin/acm-runtime.sh"]
82           args: ["/opt/app/policy/clamp/etc/mounted/acRuntimeParameters.yaml"]
83           env:
84           - name: KEYSTORE_PASSWD
85             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
86           - name: TRUSTSTORE_PASSWD
87             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
88 {{- end }}
89           ports: {{ include "common.containerPorts" . | nindent 12  }}
90           # disable liveness probe when breakpoints set in debugger
91           # so K8s doesn't restart unresponsive container
92           {{- if eq .Values.liveness.enabled true }}
93           livenessProbe:
94             tcpSocket:
95               port: {{ .Values.liveness.port }}
96             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
97             periodSeconds: {{ .Values.liveness.periodSeconds }}
98           {{ end -}}
99           readinessProbe:
100             tcpSocket:
101               port: {{ .Values.readiness.port }}
102             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
103             periodSeconds: {{ .Values.readiness.periodSeconds }}
104           volumeMounts:
105 {{ include "common.certInitializer.volumeMount" . | indent 10 }}
106           - mountPath: /etc/localtime
107             name: localtime
108             readOnly: true
109           - mountPath: /opt/app/policy/clamp/etc/mounted
110             name: ac-runtime-config-processed
111           resources:
112 {{ include "common.resources" . }}
113         {{- if .Values.nodeSelector }}
114         nodeSelector:
115 {{ toYaml .Values.nodeSelector | indent 10 }}
116         {{- end -}}
117         {{- if .Values.affinity }}
118         affinity:
119 {{ toYaml .Values.affinity | indent 10 }}
120         {{- end }}
121       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
122       volumes:
123 {{ include "common.certInitializer.volumes" . | indent 8 }}
124         - name: localtime
125           hostPath:
126              path: /etc/localtime
127         - name: ac-runtime-config
128           configMap:
129             name: {{ include "common.fullname" . }}-configmap
130             defaultMode: 0755
131         - name: ac-runtime-config-processed
132           emptyDir:
133             medium: Memory
134       imagePullSecrets:
135       - name: "{{ include "common.namespace" . }}-docker-registry-key"