Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / cps / components / cps-temporal / templates / deployment.yaml
1 {{/*
2 # ============LICENSE_START=======================================================
3 #  Copyright (c) 2021 Bell Canada.
4 # Modifications Copyright © 2022 Nordix Foundation
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9
10 #       http://www.apache.org/licenses/LICENSE-2.0
11
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 #  SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20 */}}
21
22 apiVersion: apps/v1
23 kind: Deployment
24 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   minReadySeconds: {{ index .Values.minReadySeconds }}
28   strategy:
29     type: {{ index .Values.updateStrategy.type }}
30     rollingUpdate:
31       maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }}
32       maxSurge: {{ index .Values.updateStrategy.maxSurge }}
33   selector: {{- include "common.selectors" . | nindent 4 }}
34   template:
35     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
36     spec:
37       {{ include "common.podSecurityContext" . | indent 6 | trim}}
38       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . ) }}
39       initContainers: {{ include "common.readinessCheck.waitFor" . | nindent 6 }}
40       - name: {{ include "common.name" . }}-update-config
41         image: {{ include "repositoryGenerator.image.envsubst" . }}
42         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
43         command:
44             - sh
45         args:
46           - -c
47           - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; done"
48         env:
49           - name: DB_USERNAME
50             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 12 }}
51           - name: DB_PASSWORD
52             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 12 }}
53           - name: APP_USERNAME
54             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "login") | indent 12 }}
55           - name: APP_PASSWORD
56             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "password") | indent 12 }}
57           {{- if .Values.config.useStrimziKafka }}
58           - name: JAASLOGIN
59             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cps-kafka-user" "key" "sasl.jaas.config") | indent 12 }}
60           {{- end }}
61         volumeMounts:
62           - mountPath: /config-input
63             name: init-data-input
64           - mountPath: /config
65             name: init-data
66       containers:
67       - name: {{ include "common.name" . }}
68         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
69         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
70         ports: {{ include "common.containerPorts" . | nindent 10  }}
71         {{ include "common.containerSecurityContext" . | indent 8 | trim }}
72         # disable liveness probe when breakpoints set in debugger
73         # so K8s doesn't restart unresponsive container
74         {{- if eq .Values.liveness.enabled true }}
75         livenessProbe:
76           httpGet:
77             port: {{ .Values.liveness.port }}
78             path: {{ .Values.liveness.path }}
79           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
80           periodSeconds: {{ .Values.liveness.periodSeconds }}
81         {{ end -}}
82         readinessProbe:
83           httpGet:
84             port: {{ .Values.readiness.port }}
85             path: {{ .Values.readiness.path }}
86           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
87           periodSeconds: {{ .Values.readiness.periodSeconds }}
88         env:
89           - name: SPRING_PROFILES_ACTIVE
90             value: {{ .Values.config.spring.profile }}
91         resources: {{ include "common.resources" . | nindent 10 }}
92         {{- if .Values.nodeSelector }}
93         nodeSelector: {{ toYaml .Values.nodeSelector | nindent 12 }}
94         {{- end }}
95         {{- if .Values.affinity }}
96         affinity: {{ toYaml .Values.affinity | nindent 12 }}
97         {{- end }}
98         volumeMounts:
99           - mountPath: /app/resources/application-helm.yml
100             subPath: application-helm.yml
101             name: init-data
102           - mountPath: /app/resources/logback.xml
103             subPath: logback.xml
104             name: init-data
105           - mountPath: /tmp
106             name: init-temp
107       volumes:
108         - name: init-data-input
109           configMap:
110             name: {{ include "common.fullname" . }}
111         - name: init-data
112           emptyDir:
113             medium: Memory
114         - name: init-temp
115           emptyDir: {}
116       imagePullSecrets:
117         - name: "{{ include "common.namespace" . }}-docker-registry-key"
118