blob: 985ab4e8af0fb9958645c4803c70100f88289729 [file] [log] [blame]
Prateekinlinux445a18e2018-08-01 06:48:33 +00001# Copyright © 2018 Amdocs, Bell Canada , ZTE
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020014apiVersion: apps/v1
BorislavG0433c912018-03-21 18:35:30 +020015kind: Deployment
16metadata:
17 name: {{ include "common.fullname" . }}
18 namespace: {{ include "common.namespace" . }}
19 labels:
20 app: {{ include "common.name" . }}
21 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010022 release: {{ include "common.release" . }}
BorislavG0433c912018-03-21 18:35:30 +020023 heritage: {{ .Release.Service }}
24spec:
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020025 selector:
26 matchLabels:
27 app: {{ include "common.name" . }}
BorislavG0433c912018-03-21 18:35:30 +020028 replicas: {{ .Values.replicaCount }}
29 template:
30 metadata:
31 labels:
32 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010033 release: {{ include "common.release" . }}
Huabing Zhao81b89762018-07-30 06:33:03 +000034 annotations:
35 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020036 spec:
Huabing Zhao8f7cc812018-08-08 06:27:37 +000037 serviceAccountName: msb
BorislavG0433c912018-03-21 18:35:30 +020038 containers:
39 - name: {{ include "common.name" . }}
40 image: "{{ .Values.global.dockerHubRepository | default .Values.dockerHubRepository }}/{{ .Values.image }}"
41 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
42 ports:
43 - containerPort: {{ .Values.service.internalPort }}
44 # disable liveness probe when breakpoints set in debugger
45 # so K8s doesn't restart unresponsive container
46 {{- if eq .Values.liveness.enabled true }}
47 livenessProbe:
48 tcpSocket:
49 port: {{ .Values.service.internalPort }}
50 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
51 periodSeconds: {{ .Values.liveness.periodSeconds }}
52 {{ end -}}
53 readinessProbe:
54 tcpSocket:
55 port: {{ .Values.service.internalPort }}
56 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
57 periodSeconds: {{ .Values.readiness.periodSeconds }}
58 env:
59 volumeMounts:
60 - mountPath: /etc/localtime
61 name: localtime
62 readOnly: true
63 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000064{{ include "common.resources" . | indent 12 }}
BorislavG0433c912018-03-21 18:35:30 +020065 {{- if .Values.nodeSelector }}
66 nodeSelector:
67{{ toYaml .Values.nodeSelector | indent 10 }}
68 {{- end -}}
69 {{- if .Values.affinity }}
70 affinity:
71{{ toYaml .Values.affinity | indent 10 }}
72 {{- end }}
73 volumes:
74 - name: localtime
75 hostPath:
76 path: /etc/localtime
77 imagePullSecrets:
78 - name: "{{ include "common.namespace" . }}-docker-registry-key"