[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 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
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"