89a2b6661f6fff5d071e55a1a81d894fe495474f
[oom.git] / kubernetes / msb / components / 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       containers:
40         - name: {{ include "common.name" . }}
41           image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }}
42           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
43           securityContext:
44             runAsUser: {{ .Values.securityContext.runAsUser }}
45             runAsGroup: {{ .Values.securityContext.runAsGroup }}
46           command:
47             - docker-entrypoint.sh
48           args:
49             - "agent"
50             - "-dev"
51             - "-client"
52             - "0.0.0.0"
53           ports:
54           - containerPort: {{ .Values.service.internalPort }}
55           # disable liveness probe when breakpoints set in debugger
56           # so K8s doesn't restart unresponsive container
57           {{- if eq .Values.liveness.enabled true }}
58           livenessProbe:
59             tcpSocket:
60               port: {{ .Values.service.internalPort }}
61             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62             periodSeconds: {{ .Values.liveness.periodSeconds }}
63           {{ end -}}
64           readinessProbe:
65             tcpSocket:
66               port: {{ .Values.service.internalPort }}
67             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.readiness.periodSeconds }}
69           env:
70           volumeMounts:
71           - mountPath: /etc/localtime
72             name: localtime
73             readOnly: true
74           - mountPath: /usr/local/bin/docker-entrypoint.sh
75             name: entrypoint
76             subPath: docker-entrypoint.sh
77           resources: {{ include "common.resources" . | nindent 12 }}
78         {{- if .Values.nodeSelector }}
79         nodeSelector:
80 {{ toYaml .Values.nodeSelector | indent 10 }}
81         {{- end -}}
82         {{- if .Values.affinity }}
83         affinity:
84 {{ toYaml .Values.affinity | indent 10 }}
85         {{- end }}
86       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
87       volumes:
88         - name: localtime
89           hostPath:
90             path: /etc/localtime
91         - name: entrypoint
92           configMap:
93             name: {{ include "common.fullname" . }}-entrypoint
94             defaultMode: 0777
95       {{- include "common.imagePullSecrets" . | nindent 6 }}