Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / cps / components / cps-core / templates / deployment.yaml
1 {{/*
2 # Copyright (C) 2021 Pantheon.tech, Orange
3 # Modifications Copyright (C) 2021 Bell Canada.
4 # Modifications Copyright (C) 2021-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
19 apiVersion: apps/v1
20 kind: Deployment
21 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
22 spec:
23   replicas: {{ .Values.replicaCount }}
24   minReadySeconds: {{ index .Values.minReadySeconds }}
25   strategy:
26     type: {{ index .Values.updateStrategy.type }}
27     rollingUpdate:
28       maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }}
29       maxSurge: {{ index .Values.updateStrategy.maxSurge }}
30   selector: {{- include "common.selectors" . | nindent 4 }}
31   template:
32     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
33     spec:
34       {{ include "common.podSecurityContext" . | indent 6 | trim}}
35       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . ) }}
36       initContainers: {{ include "common.readinessCheck.waitFor" . | nindent 6 }}
37       - name: {{ include "common.name" . }}-update-config
38         image: {{ include "repositoryGenerator.image.envsubst" . }}
39         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
40         command:
41             - sh
42         args:
43           - -c
44           - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; done"
45         env:
46           - name: DB_USERNAME
47             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 12 }}
48           - name: DB_PASSWORD
49             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 12 }}
50           - name: LIQUIBASE_LABELS
51             value: {{ .Values.config.liquibaseLabels }}
52           - name: CPS_USERNAME
53             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "login") | indent 12 }}
54           - name: CPS_PASSWORD
55             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "password") | indent 12 }}
56           - name: DMI_USERNAME
57             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "dmi-plugin-user-creds" "key" "login") | indent 12 }}
58           - name: DMI_PASSWORD
59             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "dmi-plugin-user-creds" "key" "password") | indent 12 }}
60           {{- if .Values.config.useStrimziKafka }}
61           - name: JAASLOGIN
62             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cps-kafka-user" "key" "sasl.jaas.config") | indent 12 }}
63           {{- end }}
64         volumeMounts:
65           - mountPath: /config-input
66             name: init-data-input
67           - mountPath: /config
68             name: init-data
69       containers:
70       - name: {{ include "common.name" . }}
71         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
72         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
73         ports: {{ include "common.containerPorts" . | nindent 10  }}
74         {{ include "common.containerSecurityContext" . | indent 8 | trim }}
75         # disable liveness probe when breakpoints set in debugger
76         # so K8s doesn't restart unresponsive container
77         {{- if eq .Values.liveness.enabled true }}
78         livenessProbe:
79           httpGet:
80             port: {{ .Values.liveness.port }}
81             path: {{ .Values.liveness.path }}
82           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
83           periodSeconds: {{ .Values.liveness.periodSeconds }}
84         {{ end -}}
85         readinessProbe:
86           httpGet:
87             port: {{ .Values.readiness.port }}
88             path: {{ .Values.readiness.path }}
89           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
90           periodSeconds: {{ .Values.readiness.periodSeconds }}
91         startupProbe:
92           httpGet:
93             path: {{ .Values.startup.path }}
94             port: {{ .Values.startup.port }}
95           failureThreshold: {{ .Values.startup.failureThreshold }}
96           periodSeconds: {{ .Values.startup.periodSeconds }}
97         env:
98           - name: SPRING_PROFILES_ACTIVE
99             value: {{ .Values.config.spring.profile }}
100         resources: {{ include "common.resources" . | nindent 10 }}
101         {{- if .Values.nodeSelector }}
102         nodeSelector: {{ toYaml .Values.nodeSelector | nindent 12 }}
103         {{- end }}
104         {{- if .Values.affinity }}
105         affinity: {{ toYaml .Values.affinity | nindent 12 }}
106         {{- end }}
107         volumeMounts:
108           - mountPath: /app/resources/application-helm.yml
109             subPath: application-helm.yml
110             name: init-data
111           - mountPath: /app/resources/logback.xml
112             subPath: logback.xml
113             name: init-data
114           - mountPath: /tmp
115             name: init-temp
116       volumes:
117         - name: init-data-input
118           configMap:
119             name: {{ include "common.fullname" . }}
120         - name: init-data
121           emptyDir:
122             medium: Memory
123         - name: init-temp
124           emptyDir: {}
125       imagePullSecrets:
126         - name: "{{ include "common.namespace" . }}-docker-registry-key"