saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 1 | {{/* |
| 2 | # ============LICENSE_START======================================================= |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 3 | # Copyright (C) 2021-2023 Nordix Foundation. |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 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 }} |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 44 | name: {{ include "common.name" . }}-galera-config-readiness |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 45 | resources: |
| 46 | limits: |
| 47 | cpu: "100m" |
Andreas Geissler | 8cbb3d9 | 2024-03-12 16:44:56 +0100 | [diff] [blame] | 48 | memory: "500Mi" |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 49 | requests: |
| 50 | cpu: "3m" |
Andreas Geissler | 8cbb3d9 | 2024-03-12 16:44:56 +0100 | [diff] [blame] | 51 | memory: "20Mi" |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 52 | - command: |
| 53 | - sh |
| 54 | args: |
| 55 | - -c |
| 56 | - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done" |
| 57 | env: |
| 58 | - name: SQL_USER |
| 59 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }} |
| 60 | - name: SQL_PASSWORD |
| 61 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }} |
| 62 | - name: RUNTIME_USER |
| 63 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "runtime-secret" "key" "login") | indent 10 }} |
| 64 | - name: RUNTIME_PASSWORD |
| 65 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "runtime-secret" "key" "password") | indent 10 }} |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 66 | - name: SASL_JAAS_CONFIG |
| 67 | valueFrom: |
| 68 | secretKeyRef: |
| 69 | name: {{ include "common.name" . }}-ku |
| 70 | key: sasl.jaas.config |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 71 | volumeMounts: |
| 72 | - mountPath: /config-input |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 73 | name: ac-runtime-config |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 74 | - mountPath: /config |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 75 | name: ac-runtime-config-processed |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 76 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
| 77 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 78 | name: {{ include "common.name" . }}-update-config |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 79 | containers: |
| 80 | - name: {{ include "common.name" . }} |
| 81 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
| 82 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 83 | command: ["/opt/app/policy/clamp/bin/acm-runtime.sh"] |
| 84 | args: ["/opt/app/policy/clamp/etc/mounted/acRuntimeParameters.yaml"] |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 85 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
| 86 | # disable liveness probe when breakpoints set in debugger |
| 87 | # so K8s doesn't restart unresponsive container |
| 88 | {{- if eq .Values.liveness.enabled true }} |
| 89 | livenessProbe: |
| 90 | tcpSocket: |
| 91 | port: {{ .Values.liveness.port }} |
| 92 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 93 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 94 | {{ end -}} |
| 95 | readinessProbe: |
| 96 | tcpSocket: |
| 97 | port: {{ .Values.readiness.port }} |
| 98 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 99 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 100 | volumeMounts: |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 101 | - mountPath: /etc/localtime |
| 102 | name: localtime |
| 103 | readOnly: true |
| 104 | - mountPath: /opt/app/policy/clamp/etc/mounted |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 105 | name: ac-runtime-config-processed |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 106 | resources: {{ include "common.resources" . | nindent 12 }} |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 107 | {{- if .Values.nodeSelector }} |
| 108 | nodeSelector: |
| 109 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 110 | {{- end -}} |
| 111 | {{- if .Values.affinity }} |
| 112 | affinity: |
| 113 | {{ toYaml .Values.affinity | indent 10 }} |
| 114 | {{- end }} |
| 115 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
| 116 | volumes: |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 117 | - name: localtime |
| 118 | hostPath: |
| 119 | path: /etc/localtime |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 120 | - name: ac-runtime-config |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 121 | configMap: |
| 122 | name: {{ include "common.fullname" . }}-configmap |
| 123 | defaultMode: 0755 |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 124 | - name: ac-runtime-config-processed |
saul.gill | 7124a4b | 2021-09-09 12:02:49 +0100 | [diff] [blame] | 125 | emptyDir: |
| 126 | medium: Memory |
Andreas Geissler | bd0d31a | 2024-03-20 09:51:32 +0100 | [diff] [blame] | 127 | {{- include "common.imagePullSecrets" . | nindent 6 }} |