blob: b10d9d7926db025c620cff9bd61a462fa1a74690 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
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.
15
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020016apiVersion: apps/v1
vaibhav_16decf67e4182018-03-19 05:45:47 +000017kind: 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" . }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000031 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000036 spec:
37 initContainers:
38 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020039 - /app/ready.py
vaibhav_16decf67e4182018-03-19 05:45:47 +000040 args:
41 - --container-name
sebdetd85e24c2019-09-04 18:35:26 +020042 - clamp-backend
vaibhav_16decf67e4182018-03-19 05:45:47 +000043 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020049 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
vaibhav_16decf67e4182018-03-19 05:45:47 +000050 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51 name: {{ include "common.name" . }}-readiness
ChrisC2325efd2020-09-11 18:39:23 +020052{{ include "common.certInitializer.initContainer" . | nindent 6 }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000053 containers:
ac2550de009892018-05-24 15:47:05 +020054 # side car containers
Sylvain Desbureaux8c2a1622020-04-22 10:50:26 +020055 {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.sidecar" . | nindent 8 }}{{ end }}
56 # main container
vaibhav_16decf67e4182018-03-19 05:45:47 +000057 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000058 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
vaibhav_16decf67e4182018-03-19 05:45:47 +000059 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60 ports:
61 - containerPort: {{ .Values.service.internalPort }}
62 # disable liveness probe when breakpoints set in debugger
63 # so K8s doesn't restart unresponsive container
64 {{- if eq .Values.liveness.enabled true }}
65 livenessProbe:
66 tcpSocket:
67 port: {{ .Values.service.internalPort }}
68 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
69 periodSeconds: {{ .Values.liveness.periodSeconds }}
70 {{ end -}}
71 readinessProbe:
72 tcpSocket:
73 port: {{ .Values.service.internalPort }}
74 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
75 periodSeconds: {{ .Values.readiness.periodSeconds }}
ChrisC2325efd2020-09-11 18:39:23 +020076 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
Sylvain Desbureaux8c2a1622020-04-22 10:50:26 +020077 - name: logs
78 mountPath: {{ .Values.log.path }}
sebdet93b4fd42020-03-25 09:19:34 -070079 - mountPath: /etc/nginx/conf.d/default.conf
ac25507895b2c2018-05-16 14:31:23 +020080 name: {{ include "common.fullname" . }}-config
sebdet93b4fd42020-03-25 09:19:34 -070081 subPath: default.conf
vaibhav_16decf67e4182018-03-19 05:45:47 +000082 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000083{{ include "common.resources" . | indent 12 }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000084 {{- if .Values.nodeSelector }}
85 nodeSelector:
86{{ toYaml .Values.nodeSelector | indent 10 }}
87 {{- end -}}
88 {{- if .Values.affinity }}
89 affinity:
90{{ toYaml .Values.affinity | indent 10 }}
91 {{- end }}
ChrisC2325efd2020-09-11 18:39:23 +020092 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
ac25507895b2c2018-05-16 14:31:23 +020093 - name: {{ include "common.fullname" . }}-config
94 configMap:
95 name: {{ include "common.fullname" . }}
96 items:
sebdet93b4fd42020-03-25 09:19:34 -070097 - key: default.conf
98 path: default.conf
Sylvain Desbureaux8c2a1622020-04-22 10:50:26 +020099 - name: logs
ac2550de009892018-05-24 15:47:05 +0200100 emptyDir: {}
Sylvain Desbureaux8c2a1622020-04-22 10:50:26 +0200101 {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.volumes" . | nindent 8 }}{{ end }}
vaibhav_16decf67e4182018-03-19 05:45:47 +0000102 imagePullSecrets:
103 - name: "{{ include "common.namespace" . }}-docker-registry-key"