Update sdc-be liveness probe
[oom.git] / kubernetes / sdc / charts / sdc-be / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada
2 # Modifications Copyright © 2018 ZTE
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: extensions/v1beta1
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: {{ .Release.Name }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33     spec:
34       initContainers:
35       - name: {{ include "common.name" . }}-readiness
36         command:
37         - /root/ready.py
38         args:
39         - --container-name
40         - "sdc-onboarding-be"
41         env:
42         - name: NAMESPACE
43           valueFrom:
44             fieldRef:
45               apiVersion: v1
46               fieldPath: metadata.namespace
47         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
48         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49       - name: {{ include "common.name" . }}-job-completion
50         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
51         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
52         command:
53         - /root/job_complete.py
54         args:
55         - --job-name
56         - {{ .Release.Name }}-sdc-onboarding-be-cassandra-init
57         env:
58         - name: NAMESPACE
59           valueFrom:
60             fieldRef:
61               apiVersion: v1
62               fieldPath: metadata.namespace
63       containers:
64         - name: {{ include "common.name" . }}
65           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
66           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
67           ports:
68           - containerPort: {{ .Values.service.internalPort }}
69           - containerPort: {{ .Values.service.internalPort2 }}
70           {{ if eq .Values.liveness.enabled true }}
71           livenessProbe:
72             httpGet:
73               path: /sdc2/rest/version
74               port: {{ .Values.service.internalPort2 }}
75             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
76             periodSeconds: {{ .Values.liveness.periodSeconds }}
77             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
78           {{ end }}
79           readinessProbe:
80             exec:
81               command:
82               - "/var/lib/ready-probe.sh"
83             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
84             periodSeconds: {{ .Values.readiness.periodSeconds }}
85             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
86           resources:
87 {{ include "common.resources" . | indent 12 }}
88           env:
89           - name: ENVNAME
90             value: {{ .Values.global.env.name }}
91           - name: JAVA_OPTIONS
92             value: {{ .Values.config.javaOptions }}
93           - name: cassandra_ssl_enabled
94             value: {{ .Values.config.cassandraSslEnabled | quote }}
95           - name: HOST_IP
96             valueFrom:
97               fieldRef:
98                 fieldPath: status.podIP
99           volumeMounts:
100           - name: {{ include "common.fullname" . }}-environments
101             mountPath: /root/chef-solo/environments/
102           - name: {{ include "common.fullname" . }}-localtime
103             mountPath: /etc/localtime
104             readOnly: true
105           - name: {{ include "common.fullname" . }}-logs
106             mountPath: /var/log/onap
107           - name: {{ include "common.fullname" . }}-logback
108             mountPath: /tmp/logback.xml
109             subPath: logback.xml
110           lifecycle:
111             postStart:
112               exec:
113                 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/catalog-be/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
114         # side car containers
115         - name: {{ include "common.name" . }}-filebeat-onap
116           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
117           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
118           volumeMounts:
119           - name: {{ include "common.fullname" . }}-filebeat-conf
120             mountPath: /usr/share/filebeat/filebeat.yml
121             subPath: filebeat.yml
122           - name: {{ include "common.fullname" . }}-logs
123             mountPath: /var/log/onap
124           - name: {{ include "common.fullname" . }}-data-filebeat
125             mountPath: /usr/share/filebeat/data
126       volumes:
127       - name: {{ include "common.fullname" . }}-localtime
128         hostPath:
129           path: /etc/localtime
130       - name: {{ include "common.fullname" . }}-filebeat-conf
131         configMap:
132           name: {{ .Release.Name }}-sdc-filebeat-configmap
133       - name: {{ include "common.fullname" . }}-data-filebeat
134         emptyDir: {}
135       - name: {{ include "common.fullname" . }}-logback
136         configMap:
137           name : {{ include "common.fullname" . }}-logging-configmap
138       - name: {{ include "common.fullname" . }}-environments
139         configMap:
140           name: {{ .Release.Name }}-sdc-environments-configmap
141           defaultMode: 0755
142       - name:  {{ include "common.fullname" . }}-logs
143         emptyDir: {}
144       imagePullSecrets:
145       - name: "{{ include "common.namespace" . }}-docker-registry-key"