[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / msb / charts / msb-consul / templates / deployment.yaml
1 {{/*
2 # 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.
15 */}}
16 apiVersion: apps/v1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30   replicas: {{ .Values.replicaCount }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36       annotations:
37         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
38     spec:
39       serviceAccountName: msb
40       containers:
41         - name: {{ include "common.name" . }}
42           image: "{{ .Values.global.dockerHubRepository | default .Values.dockerHubRepository }}/{{ .Values.image }}"
43           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44           ports:
45           - containerPort: {{ .Values.service.internalPort }}
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           volumeMounts:
62           - mountPath: /etc/localtime
63             name: localtime
64             readOnly: true
65           resources:
66 {{ include "common.resources" . | indent 12 }}
67         {{- if .Values.nodeSelector }}
68         nodeSelector:
69 {{ toYaml .Values.nodeSelector | indent 10 }}
70         {{- end -}}
71         {{- if .Values.affinity }}
72         affinity:
73 {{ toYaml .Values.affinity | indent 10 }}
74         {{- end }}
75       volumes:
76         - name: localtime
77           hostPath:
78             path: /etc/localtime
79       imagePullSecrets:
80       - name: "{{ include "common.namespace" . }}-docker-registry-key"