de901e46341b7877db43f139c4e4f2e667c3e468
[oom.git] / kubernetes / msb / components / msb-discovery / 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       initContainers:
40       - command:
41         - /app/ready.py
42         args:
43         - --service-name
44         - msb-consul
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51         image: {{ include "repositoryGenerator.image.readiness" . }}
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-readiness
54         resources:
55           limits:
56             cpu: "100m"
57             memory: "500Mi"
58           requests:
59             cpu: "3m"
60             memory: "20Mi"
61       containers:
62         - name: {{ include "common.name" . }}
63           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
64           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65           ports:
66           - containerPort: {{ .Values.service.internalPort }}
67           # disable liveness probe when breakpoints set in debugger
68           # so K8s doesn't restart unresponsive container
69           {{- if eq .Values.liveness.enabled true }}
70           livenessProbe:
71             tcpSocket:
72               port: {{ .Values.service.internalPort }}
73             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
74             periodSeconds: {{ .Values.liveness.periodSeconds }}
75           {{ end -}}
76           readinessProbe:
77             tcpSocket:
78               port: {{ .Values.service.internalPort }}
79             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
80             periodSeconds: {{ .Values.readiness.periodSeconds }}
81           env:
82           - name: CONSUL_IP
83             value: msb-consul.{{ include "common.namespace" . }}
84           volumeMounts:
85           - mountPath: /etc/localtime
86             name: localtime
87             readOnly: true
88           - mountPath: /usr/local/discover-works/logs
89             name: {{ include "common.fullname" . }}-logs
90           resources: {{ include "common.resources" . | nindent 12 }}
91         {{- if .Values.nodeSelector }}
92         nodeSelector:
93 {{ toYaml .Values.nodeSelector | indent 10 }}
94         {{- end -}}
95         {{- if .Values.affinity }}
96         affinity:
97 {{ toYaml .Values.affinity | indent 10 }}
98         {{- end }}
99
100         # Filebeat sidecar container
101         {{ include "common.log.sidecar" . | nindent 8 }}
102       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
103       volumes:
104         - name: {{ include "common.fullname" . }}-log-conf
105           configMap:
106             name: {{ include "common.fullname" . }}-log
107         {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 8 }}
108         - name:  {{ include "common.fullname" . }}-logs
109           emptyDir: {}
110         - name: localtime
111           hostPath:
112             path: /etc/localtime
113       {{- include "common.imagePullSecrets" . | nindent 6 }}