blob: 3ce24e2e843f57a7839eec37de1a5e6789d97625 [file] [log] [blame]
Jakub Latusek50530762020-10-21 13:36:29 +02001{{/*
Alexis de Talhouët108e28f2019-04-14 18:54:56 -04002# Copyright (c) 2019 Bell Canada
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -05003#
Mike Elliott37cae252018-09-12 14:45:40 -04004# 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.
Jakub Latusek50530762020-10-21 13:36:29 +020015*/}}
Mike Elliott37cae252018-09-12 14:45:40 -040016
Grzegorz-Lis9bd98782020-07-27 15:22:28 +020017apiVersion: apps/v1
Mike Elliott37cae252018-09-12 14:45:40 -040018kind: Deployment
19metadata:
20 name: {{ include "common.fullname" . }}
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
Mike Elliott37cae252018-09-12 14:45:40 -040026 heritage: {{ .Release.Service }}
27spec:
Grzegorz-Lis9bd98782020-07-27 15:22:28 +020028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
Mike Elliott37cae252018-09-12 14:45:40 -040031 replicas: {{ .Values.replicaCount }}
32 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
Mike Elliott37cae252018-09-12 14:45:40 -040037 spec:
38 initContainers:
39 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020040 - /app/ready.py
Mike Elliott37cae252018-09-12 14:45:40 -040041 args:
42 - --container-name
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040043 - cds-blueprints-processor
Mike Elliott37cae252018-09-12 14:45:40 -040044 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
kuldiprd276d162021-08-31 15:13:52 -040050 {{- 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 }}
Sylvain Desbureaux503b2292020-11-21 22:29:17 +010056 image: {{ include "repositoryGenerator.image.readiness" . }}
Mike Elliott37cae252018-09-12 14:45:40 -040057 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58 name: {{ include "common.name" . }}-readiness
59 containers:
60 - name: {{ include "common.name" . }}
Sylvain Desbureaux503b2292020-11-21 22:29:17 +010061 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Mike Elliott37cae252018-09-12 14:45:40 -040062 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
63 ports:
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040064 - containerPort: {{ .Values.service.grpc.internalPort }}
Mike Elliott37cae252018-09-12 14:45:40 -040065 {{ if .Values.liveness.enabled }}
66 livenessProbe:
67 tcpSocket:
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040068 port: {{ .Values.service.grpc.internalPort }}
Mike Elliott37cae252018-09-12 14:45:40 -040069 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
70 periodSeconds: {{ .Values.liveness.periodSeconds }}
Oleg Mitsura3a621182019-10-09 12:40:11 -040071 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mike Elliott37cae252018-09-12 14:45:40 -040072 {{ end }}
73 readinessProbe:
74 tcpSocket:
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040075 port: {{ .Values.service.grpc.internalPort }}
Oleg Mitsurabad99342019-10-28 14:06:42 -040076 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
77 periodSeconds: {{ .Values.readiness.periodSeconds }}
78 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
Mike Elliott37cae252018-09-12 14:45:40 -040079 volumeMounts:
80 - mountPath: /etc/localtime
81 name: localtime
82 readOnly: true
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040083 - mountPath: {{ .Values.persistence.deployedBlueprint }}
84 name: {{ include "common.fullname" . }}-blueprints
Mike Elliott37cae252018-09-12 14:45:40 -040085 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000086{{ include "common.resources" . | indent 12 }}
Mike Elliott37cae252018-09-12 14:45:40 -040087 {{- 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 }}
farida azmyffad0322021-04-09 14:18:14 +020095 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Mike Elliott37cae252018-09-12 14:45:40 -040096 volumes:
97 - name: localtime
98 hostPath:
99 path: /etc/localtime
Alexis de Talhouët108e28f2019-04-14 18:54:56 -0400100 - name: {{ include "common.fullname" . }}-blueprints
101 persistentVolumeClaim:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100102 claimName: {{ include "common.release" . }}-cds-blueprints
Mike Elliott37cae252018-09-12 14:45:40 -0400103 imagePullSecrets:
104 - name: "{{ include "common.namespace" . }}-docker-registry-key"