blob: 5b8ceae19144a577236bd216ae0544eac725213f [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.
BorislavG0433c912018-03-21 18:35:30 +020014apiVersion: extensions/v1beta1
15kind: 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 "+" "_" }}
22 release: {{ .Release.Name }}
23 heritage: {{ .Release.Service }}
24spec:
25 replicas: {{ .Values.replicaCount }}
26 template:
27 metadata:
28 labels:
29 app: {{ include "common.name" . }}
30 release: {{ .Release.Name }}
Huabing Zhao81b89762018-07-30 06:33:03 +000031 annotations:
32 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020033 spec:
Huabing Zhao8f7cc812018-08-08 06:27:37 +000034 serviceAccountName: msb
BorislavG0433c912018-03-21 18:35:30 +020035 containers:
36 - name: {{ include "common.name" . }}
37 image: "{{ .Values.global.dockerHubRepository | default .Values.dockerHubRepository }}/{{ .Values.image }}"
38 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39 ports:
40 - containerPort: {{ .Values.service.internalPort }}
41 # disable liveness probe when breakpoints set in debugger
42 # so K8s doesn't restart unresponsive container
43 {{- if eq .Values.liveness.enabled true }}
44 livenessProbe:
45 tcpSocket:
46 port: {{ .Values.service.internalPort }}
47 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
48 periodSeconds: {{ .Values.liveness.periodSeconds }}
49 {{ end -}}
50 readinessProbe:
51 tcpSocket:
52 port: {{ .Values.service.internalPort }}
53 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
54 periodSeconds: {{ .Values.readiness.periodSeconds }}
55 env:
56 volumeMounts:
57 - mountPath: /etc/localtime
58 name: localtime
59 readOnly: true
60 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000061{{ include "common.resources" . | indent 12 }}
BorislavG0433c912018-03-21 18:35:30 +020062 {{- if .Values.nodeSelector }}
63 nodeSelector:
64{{ toYaml .Values.nodeSelector | indent 10 }}
65 {{- end -}}
66 {{- if .Values.affinity }}
67 affinity:
68{{ toYaml .Values.affinity | indent 10 }}
69 {{- end }}
70 volumes:
71 - name: localtime
72 hostPath:
73 path: /etc/localtime
74 imagePullSecrets:
75 - name: "{{ include "common.namespace" . }}-docker-registry-key"