[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / cds / charts / cds-command-executor / templates / deployment.yaml
1 # Copyright (c) 2019 Bell Canada
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.
14
15 apiVersion: apps/v1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   selector:
27     matchLabels:
28       app: {{ include "common.name" . }}
29   replicas: {{ .Values.replicaCount }}
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}
34         release: {{ include "common.release" . }}
35     spec:
36       initContainers:
37       - command:
38         - /app/ready.py
39         args:
40         - --container-name
41         - cds-blueprints-processor
42         env:
43         - name: NAMESPACE
44           valueFrom:
45             fieldRef:
46               apiVersion: v1
47               fieldPath: metadata.namespace
48         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
49         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50         name: {{ include "common.name" . }}-readiness
51       containers:
52         - name: {{ include "common.name" . }}
53           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
54           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55           ports:
56           - containerPort: {{ .Values.service.grpc.internalPort }}
57           {{ if .Values.liveness.enabled }}
58           livenessProbe:
59             tcpSocket:
60               port: {{ .Values.service.grpc.internalPort }}
61             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62             periodSeconds: {{ .Values.liveness.periodSeconds }}
63             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
64           {{ end }}
65           readinessProbe:
66             tcpSocket:
67               port: {{ .Values.service.grpc.internalPort }}
68             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69             periodSeconds: {{ .Values.readiness.periodSeconds }}
70             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
71           volumeMounts:
72           - mountPath: /etc/localtime
73             name: localtime
74             readOnly: true
75           - mountPath: {{ .Values.persistence.deployedBlueprint }}
76             name: {{ include "common.fullname" . }}-blueprints
77           resources:
78 {{ include "common.resources" . | indent 12 }}
79         {{- if .Values.nodeSelector }}
80         nodeSelector:
81 {{ toYaml .Values.nodeSelector | indent 10 }}
82         {{- end -}}
83         {{- if .Values.affinity }}
84         affinity:
85 {{ toYaml .Values.affinity | indent 10 }}
86         {{- end }}
87       volumes:
88         - name: localtime
89           hostPath:
90             path: /etc/localtime
91         - name: {{ include "common.fullname" . }}-blueprints
92           persistentVolumeClaim:
93             claimName: {{ include "common.release" . }}-cds-blueprints
94       imagePullSecrets:
95       - name: "{{ include "common.namespace" . }}-docker-registry-key"