ee6db2dc3099cce2118bd5fb066fe2ccb7ab2d10
[oom.git] / kubernetes / msb / components / msb-eag / 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: {{- include "common.resourceMetadata" . | nindent 2 }}
20 spec:
21   selector: {{- include "common.selectors" . | nindent 4 }}
22   replicas: {{ .Values.replicaCount }}
23   template:
24     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
25     spec:
26       initContainers:
27       - command:
28         - /app/ready.py
29         args:
30         - --container-name
31         - msb-discovery
32         env:
33         - name: NAMESPACE
34           valueFrom:
35             fieldRef:
36               apiVersion: v1
37               fieldPath: metadata.namespace
38         image: {{ include "repositoryGenerator.image.readiness" . }}
39         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
40         name: {{ include "common.name" . }}-readiness
41       containers:
42         - name: {{ include "common.name" . }}
43           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
44           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
45           ports: {{- include "common.containerPorts" . | indent 10 }}
46           # disable liveness probe when breakpoints set in debugger
47           # so K8s doesn't restart unresponsive container
48           {{- if eq .Values.liveness.enabled true }}
49           livenessProbe:
50             tcpSocket:
51               port: {{ .Values.service.internalPort }}
52             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
53             periodSeconds: {{ .Values.liveness.periodSeconds }}
54           {{ end -}}
55           readinessProbe:
56             tcpSocket:
57               port: {{ .Values.service.internalPort }}
58             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
59             periodSeconds: {{ .Values.readiness.periodSeconds }}
60           env:
61           - name: CONSUL_IP
62             value: msb-consul.{{ include "common.namespace" . }}
63           - name: SDCLIENT_IP
64             value: msb-discovery.{{ include "common.namespace" . }}
65           - name: ROUTE_LABELS
66             value: {{ .Values.config.routeLabels }}
67           volumeMounts:
68           - mountPath: /etc/localtime
69             name: localtime
70             readOnly: true
71           - mountPath: /usr/local/apiroute-works/logs
72             name: {{ include "common.fullname" . }}-logs
73           resources: {{ include "common.resources" . | nindent 12 }}
74         {{- if .Values.nodeSelector }}
75         nodeSelector:
76 {{ toYaml .Values.nodeSelector | indent 10 }}
77         {{- end -}}
78         {{- if .Values.affinity }}
79         affinity:
80 {{ toYaml .Values.affinity | indent 10 }}
81         {{- end }}
82         # side car containers
83         {{ include "common.log.sidecar" . | nindent 8 }}
84       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
85       volumes:
86         - name: {{ include "common.fullname" . }}-log-conf
87           configMap:
88             name: {{ include "common.fullname" . }}-log
89         {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 8 }}
90         - name:  {{ include "common.fullname" . }}-logs
91           emptyDir: {}
92         - name: localtime
93           hostPath:
94             path: /etc/localtime
95       imagePullSecrets:
96       - name: "{{ include "common.namespace" . }}-docker-registry-key"