Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / msb / components / msb-iag / templates / deployment.yaml
1 {{/*
2 # Copyright © 2018 Amdocs, Bell Canada , ZTE
3 # Copyright © 2021 Orange
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 apiVersion: apps/v1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.fullname" . }}
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ include "common.release" . }}
26     heritage: {{ .Release.Service }}
27 spec:
28   selector:
29     matchLabels:
30       app: {{ include "common.name" . }}
31   replicas: {{ .Values.replicaCount }}
32   template:
33     metadata:
34       labels:
35         app: {{ include "common.name" . }}
36         release: {{ include "common.release" . }}
37       annotations:
38         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
39     spec:
40       initContainers:
41       {{ include "common.certInitializer.initContainer" . | indent 6 | trim }}
42       - command:
43         - /app/ready.py
44         args:
45         - --container-name
46         - msb-discovery
47         env:
48         - name: NAMESPACE
49           valueFrom:
50             fieldRef:
51               apiVersion: v1
52               fieldPath: metadata.namespace
53         image: {{ include "repositoryGenerator.image.readiness" . }}
54         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55         name: {{ include "common.name" . }}-readiness
56       containers:
57         - name: {{ include "common.name" . }}
58           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
59           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60           ports:
61           - containerPort: {{ .Values.service.internalPort }}
62             name: {{ .Values.service.name }}
63           - containerPort: {{ .Values.service.internalPortHttps }}
64             name: {{ .Values.service.name }}-https
65           # disable liveness probe when breakpoints set in debugger
66           # so K8s doesn't restart unresponsive container
67           {{- if eq .Values.liveness.enabled true }}
68           livenessProbe:
69             tcpSocket:
70               port: {{ .Values.service.internalPort }}
71             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
72             periodSeconds: {{ .Values.liveness.periodSeconds }}
73           {{ end -}}
74           readinessProbe:
75             tcpSocket:
76               port: {{ .Values.service.internalPort }}
77             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
78             periodSeconds: {{ .Values.readiness.periodSeconds }}
79           env:
80           - name: CONSUL_IP
81             value: msb-consul.{{ include "common.namespace" . }}
82           - name: SDCLIENT_IP
83             value: msb-discovery.{{ include "common.namespace" . }}
84           - name: ROUTE_LABELS
85             value: {{ .Values.config.routeLabels }}
86           volumeMounts:
87           {{ include "common.certInitializer.volumeMount" . | indent 10 | trim }}
88           - mountPath: /etc/localtime
89             name: localtime
90             readOnly: true
91           - mountPath: /usr/local/apiroute-works/logs
92             name: {{ include "common.fullname" . }}-logs
93           - mountPath: /usr/local/openresty/nginx/msb-enabled/msbhttps.conf
94             name: {{ include "common.fullname" . }}-nginx-conf
95             subPath: msbhttps.conf
96           resources:
97 {{ include "common.resources" . | indent 12 }}
98         {{- if .Values.nodeSelector }}
99         nodeSelector:
100 {{ toYaml .Values.nodeSelector | indent 10 }}
101         {{- end -}}
102         {{- if .Values.affinity }}
103         affinity:
104 {{ toYaml .Values.affinity | indent 10 }}
105         {{- end }}
106         # side car containers
107         {{ include "common.log.sidecar" . | nindent 8 }}
108       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
109       volumes:
110         {{ include "common.certInitializer.volumes" . | indent 8 | trim }}
111         - name: {{ include "common.fullname" . }}-log-conf
112           configMap:
113             name: {{ include "common.fullname" . }}-log
114         - name: {{ include "common.fullname" . }}-nginx-conf
115           configMap:
116             name: {{ include "common.fullname" . }}-nginx
117         {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 8 }}
118         - name:  {{ include "common.fullname" . }}-logs
119           emptyDir: {}
120         - name: localtime
121           hostPath:
122             path: /etc/localtime
123       imagePullSecrets:
124       - name: "{{ include "common.namespace" . }}-docker-registry-key"