27bc013f0e544225124bf59204920ba4927d9314
[oom.git] / kubernetes / policy / components / policy-clamp-runtime-acm / templates / deployment.yaml
1 {{/*
2 #  ============LICENSE_START=======================================================
3 #   Copyright (C) 2021-2023 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 {{- if not .Values.global.useStrimziKafka }}
32 {{ include "common.readinessCheck.waitFor" . | nindent 6 }}
33 {{- end }}
34       - command:
35         - /app/ready.py
36         args:
37         - --job-name
38         - {{ include "common.release" . }}-policy-galera-config
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: {{ include "repositoryGenerator.image.readiness" . }}
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-galera-config-readiness
48       - command:
49         - sh
50         args:
51         - -c
52         - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
53         env:
54         - name: SQL_USER
55           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
56         - name: SQL_PASSWORD
57           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
58         - name: RUNTIME_USER
59             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "runtime-secret" "key" "login") | indent 10 }}
60         - name: RUNTIME_PASSWORD
61           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "runtime-secret" "key" "password") | indent 10 }}
62 {{- if .Values.global.useStrimziKafka }}
63         - name: SASL_JAAS_CONFIG
64           valueFrom:
65             secretKeyRef:
66               name: {{ include "common.name" . }}-ku
67               key: sasl.jaas.config
68 {{- end }}
69         volumeMounts:
70         - mountPath: /config-input
71           name: ac-runtime-config
72         - mountPath: /config
73           name: ac-runtime-config-processed
74         image: {{ include "repositoryGenerator.image.envsubst" . }}
75         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
76         name: {{ include "common.name" . }}-update-config
77       containers:
78         - name: {{ include "common.name" . }}
79           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
80           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
81           command: ["/opt/app/policy/clamp/bin/acm-runtime.sh"]
82           args: ["/opt/app/policy/clamp/etc/mounted/acRuntimeParameters.yaml"]
83           ports: {{ include "common.containerPorts" . | nindent 12  }}
84           # disable liveness probe when breakpoints set in debugger
85           # so K8s doesn't restart unresponsive container
86           {{- if eq .Values.liveness.enabled true }}
87           livenessProbe:
88             tcpSocket:
89               port: {{ .Values.liveness.port }}
90             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
91             periodSeconds: {{ .Values.liveness.periodSeconds }}
92           {{ end -}}
93           readinessProbe:
94             tcpSocket:
95               port: {{ .Values.readiness.port }}
96             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
97             periodSeconds: {{ .Values.readiness.periodSeconds }}
98           volumeMounts:
99           - mountPath: /etc/localtime
100             name: localtime
101             readOnly: true
102           - mountPath: /opt/app/policy/clamp/etc/mounted
103             name: ac-runtime-config-processed
104           resources: {{ include "common.resources" . | nindent 12 }}
105         {{- if .Values.nodeSelector }}
106         nodeSelector:
107 {{ toYaml .Values.nodeSelector | indent 10 }}
108         {{- end -}}
109         {{- if .Values.affinity }}
110         affinity:
111 {{ toYaml .Values.affinity | indent 10 }}
112         {{- end }}
113       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
114       volumes:
115         - name: localtime
116           hostPath:
117              path: /etc/localtime
118         - name: ac-runtime-config
119           configMap:
120             name: {{ include "common.fullname" . }}-configmap
121             defaultMode: 0755
122         - name: ac-runtime-config-processed
123           emptyDir:
124             medium: Memory
125       imagePullSecrets:
126       - name: "{{ include "common.namespace" . }}-docker-registry-key"