blob: be8c35aaea2cb084ce0f267c1a715a1d0eff63c8 [file] [log] [blame]
saul.gill7124a4b2021-09-09 12:02:49 +01001{{/*
2# ============LICENSE_START=======================================================
efiacor6910bbe2023-03-03 14:53:16 +00003# Copyright (C) 2021-2023 Nordix Foundation.
saul.gill7124a4b2021-09-09 12:02:49 +01004# ================================================================================
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
21apiVersion: apps/v1
22kind: Deployment
23metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24spec:
25 selector: {{- include "common.selectors" . | nindent 4 }}
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
29 spec:
30 initContainers:
efiacor6910bbe2023-03-03 14:53:16 +000031{{- if not .Values.global.useStrimziKafka }}
32{{ include "common.readinessCheck.waitFor" . | nindent 6 }}
33{{- end }}
saul.gill7124a4b2021-09-09 12:02:49 +010034 - 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 }}
efiacor6910bbe2023-03-03 14:53:16 +000047 name: {{ include "common.name" . }}-galera-config-readiness
Andreas Geissler47537432024-02-27 08:55:23 +010048 resources:
49 limits:
50 cpu: "100m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010051 memory: "500Mi"
Andreas Geissler47537432024-02-27 08:55:23 +010052 requests:
53 cpu: "3m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010054 memory: "20Mi"
saul.gill7124a4b2021-09-09 12:02:49 +010055 - command:
56 - sh
57 args:
58 - -c
59 - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
60 env:
61 - name: SQL_USER
62 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
63 - name: SQL_PASSWORD
64 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
65 - name: RUNTIME_USER
66 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "runtime-secret" "key" "login") | indent 10 }}
67 - name: RUNTIME_PASSWORD
68 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "runtime-secret" "key" "password") | indent 10 }}
efiacor6910bbe2023-03-03 14:53:16 +000069{{- if .Values.global.useStrimziKafka }}
70 - name: SASL_JAAS_CONFIG
71 valueFrom:
72 secretKeyRef:
73 name: {{ include "common.name" . }}-ku
74 key: sasl.jaas.config
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010075{{- end }}
saul.gill7124a4b2021-09-09 12:02:49 +010076 volumeMounts:
77 - mountPath: /config-input
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000078 name: ac-runtime-config
saul.gill7124a4b2021-09-09 12:02:49 +010079 - mountPath: /config
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000080 name: ac-runtime-config-processed
saul.gill7124a4b2021-09-09 12:02:49 +010081 image: {{ include "repositoryGenerator.image.envsubst" . }}
82 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
83 name: {{ include "common.name" . }}-update-config
saul.gill7124a4b2021-09-09 12:02:49 +010084 containers:
85 - name: {{ include "common.name" . }}
86 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
87 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000088 command: ["/opt/app/policy/clamp/bin/acm-runtime.sh"]
89 args: ["/opt/app/policy/clamp/etc/mounted/acRuntimeParameters.yaml"]
saul.gill7124a4b2021-09-09 12:02:49 +010090 ports: {{ include "common.containerPorts" . | nindent 12 }}
91 # disable liveness probe when breakpoints set in debugger
92 # so K8s doesn't restart unresponsive container
93 {{- if eq .Values.liveness.enabled true }}
94 livenessProbe:
95 tcpSocket:
96 port: {{ .Values.liveness.port }}
97 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
98 periodSeconds: {{ .Values.liveness.periodSeconds }}
99 {{ end -}}
100 readinessProbe:
101 tcpSocket:
102 port: {{ .Values.readiness.port }}
103 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
104 periodSeconds: {{ .Values.readiness.periodSeconds }}
105 volumeMounts:
saul.gill7124a4b2021-09-09 12:02:49 +0100106 - mountPath: /etc/localtime
107 name: localtime
108 readOnly: true
109 - mountPath: /opt/app/policy/clamp/etc/mounted
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000110 name: ac-runtime-config-processed
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100111 resources: {{ include "common.resources" . | nindent 12 }}
saul.gill7124a4b2021-09-09 12:02:49 +0100112 {{- if .Values.nodeSelector }}
113 nodeSelector:
114{{ toYaml .Values.nodeSelector | indent 10 }}
115 {{- end -}}
116 {{- if .Values.affinity }}
117 affinity:
118{{ toYaml .Values.affinity | indent 10 }}
119 {{- end }}
120 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
121 volumes:
saul.gill7124a4b2021-09-09 12:02:49 +0100122 - name: localtime
123 hostPath:
124 path: /etc/localtime
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000125 - name: ac-runtime-config
saul.gill7124a4b2021-09-09 12:02:49 +0100126 configMap:
127 name: {{ include "common.fullname" . }}-configmap
128 defaultMode: 0755
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000129 - name: ac-runtime-config-processed
saul.gill7124a4b2021-09-09 12:02:49 +0100130 emptyDir:
131 medium: Memory
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +0100132 {{- include "common.imagePullSecrets" . | nindent 6 }}