[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / clamp / charts / clamp-backend / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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 apiVersion: apps/v1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   selector:
29     matchLabels:
30       app: {{ include "common.name" . }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36     spec:
37       initContainers:
38       - command:
39         - /app/ready.py
40         args:
41         - --container-name
42         - mariadb
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         name: {{ include "common.name" . }}-readiness
52       containers:
53         # side car containers
54         {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.sidecar" . | nindent 8 }}{{ end }}
55         # main container
56         - name: {{ include "common.name" . }}
57           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
58           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59           args:
60             - ""
61           ports:
62           - containerPort: {{ .Values.service.internalPort }}
63           # disable liveness probe when breakpoints set in debugger
64           # so K8s doesn't restart unresponsive container
65           {{- if eq .Values.liveness.enabled true }}
66           livenessProbe:
67             tcpSocket:
68               port: {{ .Values.service.internalPort }}
69             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
70             periodSeconds: {{ .Values.liveness.periodSeconds }}
71           {{ end -}}
72           readinessProbe:
73             tcpSocket:
74               port: {{ .Values.service.internalPort }}
75             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
76             periodSeconds: {{ .Values.readiness.periodSeconds }}
77           volumeMounts:
78           - name: logs
79             mountPath: {{ .Values.log.path }}
80           - mountPath: /opt/clamp/sdc-controllers-config.json
81             name: {{ include "common.fullname" . }}-config
82             subPath: sdc-controllers-config.json
83           env:
84           - name: MYSQL_USER
85             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 12 }}
86           - name: MYSQL_PASSWORD
87             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 12 }}
88           - name: MYSQL_DATABASE
89             value: {{ tpl .Values.db.databaseName .}}
90           - name: SPRING_APPLICATION_JSON
91             valueFrom:
92               configMapKeyRef:
93                 name: {{ template "common.fullname" . }}
94                 key: spring_application_json
95           resources:
96 {{ include "common.resources" . | indent 12 }}
97         {{- if .Values.nodeSelector }}
98         nodeSelector:
99 {{ toYaml .Values.nodeSelector | indent 10 }}
100         {{- end -}}
101         {{- if .Values.affinity }}
102         affinity:
103 {{ toYaml .Values.affinity | indent 10 }}
104         {{- end }}
105       volumes:
106         - name: {{ include "common.fullname" . }}-config
107           configMap:
108             name: {{ include "common.fullname" . }}
109             items:
110             - key: sdc-controllers-config.json
111               path: sdc-controllers-config.json
112         - name:  logs
113           emptyDir: {}
114         {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.volumes" . | nindent 8 }}{{ end }}
115       imagePullSecrets:
116       - name: "{{ include "common.namespace" . }}-docker-registry-key"