Merge "Add readiness support for StatefulSet resource"
[oom.git] / kubernetes / sdc / charts / sdc-wfd-be / templates / deployment.yaml
1 # Copyright © 2018 Amdocs, 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: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - name: {{ include "common.name" . }}-job-completion
35         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
36         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
37         command:
38         - /root/job_complete.py
39         args:
40         - --job-name
41         - {{ include "common.fullname" . }}-workflow-init
42         env:
43         - name: NAMESPACE
44           valueFrom:
45             fieldRef:
46               apiVersion: v1
47               fieldPath: metadata.namespace
48       containers:
49         - name: {{ include "common.name" . }}
50           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
51           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52           ports:
53           - containerPort: {{ .Values.service.internalPort }}
54           # disable liveness probe when breakpoints set in debugger
55           # so K8s doesn't restart unresponsive container
56           {{ if .Values.liveness.enabled }}
57           livenessProbe:
58             tcpSocket:
59               port: {{ .Values.service.internalPort }}
60             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
61             periodSeconds: {{ .Values.liveness.periodSeconds }}
62           {{ end }}
63           readinessProbe:
64             tcpSocket:
65               port: {{ .Values.service.internalPort }}
66             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
67             periodSeconds: {{ .Values.readiness.periodSeconds }}
68           env:
69           - name: JAVA_OPTIONS
70             value: {{ .Values.config.javaOptions }}
71           - name: CS_HOSTS
72             value: "{{ .Values.config.cassandraHosts }}"
73           - name: CS_PORT
74             value: "{{ .Values.config.cassandraClientPort }}"
75           - name: CS_USER
76             valueFrom:
77               secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_user}
78           - name: CS_PASSWORD
79             valueFrom:
80               secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_password}
81           - name: SDC_PROTOCOL
82             value: "{{ .Values.config.sdcProtocol }}"
83           - name: SDC_ENDPOINT
84             value: "{{ .Values.config.sdcEndpoint }}"
85       imagePullSecrets:
86       - name: "{{ include "common.namespace" . }}-docker-registry-key"