blob: 4f286535dc03bd119fcc58f5b5d2288a655cf4be [file] [log] [blame]
Jakub Latusekbe896842020-10-21 13:36:29 +02001{{/*
Prateekinlinux445a18e2018-08-01 06:48:33 +00002# Copyright © 2018 Amdocs, Bell Canada , ZTE
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Jakub Latusekbe896842020-10-21 13:36:29 +020015*/}}
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020016apiVersion: apps/v1
BorislavG0433c912018-03-21 18:35:30 +020017kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
BorislavG0433c912018-03-21 18:35:30 +020025 heritage: {{ .Release.Service }}
26spec:
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
BorislavG0433c912018-03-21 18:35:30 +020030 replicas: {{ .Values.replicaCount }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Huabing Zhao81b89762018-07-30 06:33:03 +000036 annotations:
37 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020038 spec:
39 initContainers:
40 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020041 - /app/ready.py
BorislavG0433c912018-03-21 18:35:30 +020042 args:
Andreas Geissleree119102024-04-11 13:53:39 +020043 - --service-name
BorislavG0433c912018-03-21 18:35:30 +020044 - msb-consul
45 env:
46 - name: NAMESPACE
47 valueFrom:
48 fieldRef:
49 apiVersion: v1
50 fieldPath: metadata.namespace
Sylvain Desbureauxfd2f8b82020-11-21 22:50:06 +010051 image: {{ include "repositoryGenerator.image.readiness" . }}
BorislavG0433c912018-03-21 18:35:30 +020052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 name: {{ include "common.name" . }}-readiness
Andreas Geissler47537432024-02-27 08:55:23 +010054 resources:
55 limits:
56 cpu: "100m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010057 memory: "500Mi"
Andreas Geissler47537432024-02-27 08:55:23 +010058 requests:
59 cpu: "3m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010060 memory: "20Mi"
BorislavG0433c912018-03-21 18:35:30 +020061 containers:
62 - name: {{ include "common.name" . }}
Sylvain Desbureauxfd2f8b82020-11-21 22:50:06 +010063 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
BorislavG0433c912018-03-21 18:35:30 +020064 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65 ports:
66 - containerPort: {{ .Values.service.internalPort }}
67 # disable liveness probe when breakpoints set in debugger
68 # so K8s doesn't restart unresponsive container
69 {{- if eq .Values.liveness.enabled true }}
70 livenessProbe:
71 tcpSocket:
72 port: {{ .Values.service.internalPort }}
73 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
74 periodSeconds: {{ .Values.liveness.periodSeconds }}
75 {{ end -}}
76 readinessProbe:
77 tcpSocket:
78 port: {{ .Values.service.internalPort }}
79 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
80 periodSeconds: {{ .Values.readiness.periodSeconds }}
81 env:
82 - name: CONSUL_IP
BorislavG6c7ecf02018-04-01 13:08:37 +030083 value: msb-consul.{{ include "common.namespace" . }}
BorislavG0433c912018-03-21 18:35:30 +020084 volumeMounts:
LiZi4dd8e112018-04-09 07:34:04 -040085 - mountPath: /usr/local/discover-works/logs
Li Zic5290dc2018-08-06 09:26:27 +000086 name: {{ include "common.fullname" . }}-logs
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010087 resources: {{ include "common.resources" . | nindent 12 }}
BorislavG0433c912018-03-21 18:35:30 +020088 {{- if .Values.nodeSelector }}
89 nodeSelector:
90{{ toYaml .Values.nodeSelector | indent 10 }}
91 {{- end -}}
92 {{- if .Values.affinity }}
93 affinity:
94{{ toYaml .Values.affinity | indent 10 }}
95 {{- end }}
LiZi4dd8e112018-04-09 07:34:04 -040096
Li Zic5290dc2018-08-06 09:26:27 +000097 # Filebeat sidecar container
Maciej Wereski0763e6e2021-11-18 11:48:25 +010098 {{ include "common.log.sidecar" . | nindent 8 }}
farida azmya4478e82021-10-11 13:48:11 +020099 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
BorislavG0433c912018-03-21 18:35:30 +0200100 volumes:
Li Zic5290dc2018-08-06 09:26:27 +0000101 - name: {{ include "common.fullname" . }}-log-conf
102 configMap:
103 name: {{ include "common.fullname" . }}-log
Maciej Wereski0763e6e2021-11-18 11:48:25 +0100104 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 8 }}
Li Zic5290dc2018-08-06 09:26:27 +0000105 - name: {{ include "common.fullname" . }}-logs
106 emptyDir: {}
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +0100107 {{- include "common.imagePullSecrets" . | nindent 6 }}