4ac847005ee685b4130b12ec5eabf2847bf5e99b
[oom.git] / kubernetes / cds / components / cds-sdc-listener / 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             - sdc-be
44             - --container-name
45             - message-router
46             - --container-name
47             - cds-blueprints-processor
48           env:
49           - name: NAMESPACE
50             valueFrom:
51               fieldRef:
52                 apiVersion: v1
53                 fieldPath: metadata.namespace
54           image: {{ include "repositoryGenerator.image.readiness" . }}
55           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56           name: {{ include "common.name" . }}-readiness
57       containers:
58         - name: {{ include "common.name" . }}
59           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
60           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
61           env:
62           - name: APP_CONFIG_HOME
63             value: {{ .Values.config.appConfigDir }}
64           ports:
65           - containerPort: {{ .Values.service.http.internalPort }}
66           {{ if .Values.liveness.enabled }}
67           livenessProbe:
68             httpGet:
69               path: /api/v1/sdclistener/healthcheck
70               port: {{ .Values.service.http.internalPort }}
71             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
72             periodSeconds: {{ .Values.liveness.periodSeconds }}
73           {{end}}
74           readinessProbe:
75             httpGet:
76               path: /api/v1/sdclistener/healthcheck
77               port: {{ .Values.service.http.internalPort }}
78             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
79             periodSeconds: {{ .Values.readiness.periodSeconds }}
80           volumeMounts:
81           - mountPath: {{ .Values.config.appConfigDir }}/application.yaml
82             name: {{ include "common.fullname" . }}-config
83             subPath: application.yaml
84           - mountPath: {{ .Values.config.appConfigDir }}/logback.xml
85             name: {{ include "common.fullname" . }}-config
86             subPath: logback.xml
87           resources:
88 {{ include "common.resources" . | indent 12 }}
89         {{- if .Values.nodeSelector }}
90         nodeSelector:
91 {{ toYaml .Values.nodeSelector | indent 10 }}
92         {{- end -}}
93         {{- if .Values.affinity }}
94         affinity:
95 {{ toYaml .Values.affinity | indent 10 }}
96         {{- end }}
97       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
98       volumes:
99         - name: {{ include "common.fullname" . }}-config
100           configMap:
101             name: {{ include "common.fullname" . }}-configmap
102             items:
103             - key: application.yaml
104               path: application.yaml
105             - key: logback.xml
106               path: logback.xml
107       imagePullSecrets:
108       - name: {{ include "common.namespace" . }}-docker-registry-key