Unable to boot SNDC pod without AAF
[oom.git] / kubernetes / cds / charts / cds-sdc-listener / 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: extensions/v1beta1
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   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ include "common.release" . }}
32     spec:
33       initContainers:
34         - command:
35           - /root/ready.py
36           args:
37             - --container-name
38             - sdc-be
39             - --container-name
40             - message-router
41             - --container-name
42             - cds-blueprints-processor
43           env:
44           - name: NAMESPACE
45             valueFrom:
46               fieldRef:
47                 apiVersion: v1
48                 fieldPath: metadata.namespace
49           image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51           name: {{ include "common.name" . }}-readiness
52       containers:
53         - name: {{ include "common.name" . }}
54           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
55           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56           env:
57           - name: APP_CONFIG_HOME
58             value: {{ .Values.config.appConfigDir }}
59           ports:
60           - containerPort: {{ .Values.service.http.internalPort }}
61           {{ if .Values.liveness.enabled }}
62           livenessProbe:
63             httpGet:
64               path: /api/v1/sdclistener/healthcheck
65               port: {{ .Values.service.http.internalPort }}
66             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
67             periodSeconds: {{ .Values.liveness.periodSeconds }}
68           {{end}}
69           readinessProbe:
70             httpGet:
71               path: /api/v1/sdclistener/healthcheck
72               port: {{ .Values.service.http.internalPort }}
73             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74             periodSeconds: {{ .Values.readiness.periodSeconds }}
75           volumeMounts:
76           - mountPath: {{ .Values.config.appConfigDir }}/application.yaml
77             name: {{ include "common.fullname" . }}-config
78             subPath: application.yaml
79           - mountPath: {{ .Values.config.appConfigDir }}/logback.xml
80             name: {{ include "common.fullname" . }}-config
81             subPath: logback.xml
82           resources:
83 {{ include "common.resources" . | indent 12 }}
84         {{- if .Values.nodeSelector }}
85         nodeSelector:
86 {{ toYaml .Values.nodeSelector | indent 10 }}
87         {{- end -}}
88         {{- if .Values.affinity }}
89         affinity:
90 {{ toYaml .Values.affinity | indent 10 }}
91         {{- end }}
92       volumes:
93         - name: {{ include "common.fullname" . }}-config
94           configMap:
95             name: {{ include "common.fullname" . }}-configmap
96             items:
97             - key: application.yaml
98               path: application.yaml
99             - key: logback.xml
100               path: logback.xml
101       imagePullSecrets:
102       - name: {{ include "common.namespace" . }}-docker-registry-key