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