[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / sdc / charts / sdc-fe / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T, 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: 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   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30   replicas: {{ .Values.replicaCount }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36     spec:
37       initContainers:
38       - name: {{ include "common.name" . }}-job-completion
39         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
40         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
41         command:
42         - /app/ready.py
43         args:
44         - --job-name
45         - {{ include "common.release" . }}-sdc-be-config-backend
46         env:
47         - name: NAMESPACE
48           valueFrom:
49             fieldRef:
50               apiVersion: v1
51               fieldPath: metadata.namespace
52       - name: {{ include "common.name" . }}-update-config
53         image: "{{ .Values.global.envsubstImage }}"
54         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55         command:
56           - sh
57         args:
58           - -c
59           - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config-output/${PFILE}; chmod 0755 /config-output/${PFILE}; done"
60         env:
61           - name: KEYSTORE_PASS
62             valueFrom:
63               secretKeyRef:
64                 name: {{ include "common.release" . }}-sdc-cs-secrets
65                 key: keystore_password
66           - name: TRUSTSTORE_PASS
67             valueFrom:
68               secretKeyRef:
69                 name: {{ include "common.release" . }}-sdc-cs-secrets
70                 key: truststore_password
71         volumeMounts:
72           - name: {{ include "common.fullname" . }}-environments
73             mountPath: /config-input/
74           - name: sdc-environments-output
75             mountPath: /config-output/
76       containers:
77         - name: {{ include "common.name" . }}
78           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
79           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
80           ports:
81           - containerPort: {{ .Values.service.internalPort }}
82           - containerPort: {{ .Values.service.internalPort2 }}
83           {{ if eq .Values.liveness.enabled true }}
84           livenessProbe:
85             tcpSocket:
86               port: {{ .Values.service.internalPort2 }}
87             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
88             periodSeconds: {{ .Values.liveness.periodSeconds }}
89             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
90           {{ end }}
91           readinessProbe:
92             tcpSocket:
93               port: {{ .Values.service.internalPort2 }}
94             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
95             periodSeconds: {{ .Values.readiness.periodSeconds }}
96             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
97           resources:
98 {{ include "common.resources" . | indent 12 }}
99           env:
100           - name: ENVNAME
101             value: {{ .Values.global.env.name }}
102           - name: HOST_IP
103             valueFrom:
104               fieldRef:
105                 fieldPath: status.podIP
106           - name: JAVA_OPTIONS
107             value: {{ .Values.config.javaOptions }}
108           volumeMounts:
109           - name: sdc-environments-output
110             mountPath: /var/lib/jetty/chef-solo/environments/
111           - name: sdc-cert
112             mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.p12
113             subPath: org.onap.sdc.p12
114           - name: sdc-cert
115             mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.trust.jks
116             subPath: org.onap.sdc.trust.jks
117           - name: {{ include "common.fullname" . }}-localtime
118             mountPath: /etc/localtime
119             readOnly: true
120           - name: {{ include "common.fullname" . }}-logs
121             mountPath: /var/log/onap
122           - name: {{ include "common.fullname" . }}-configs
123             mountPath: /var/lib/jetty/config/catalog-fe/plugins-configuration.yaml
124             subPath: plugins-configuration.yaml
125           - name: {{ include "common.fullname" . }}-logback
126             mountPath: /tmp/logback.xml
127             subPath: logback.xml
128           lifecycle:
129             postStart:
130               exec:
131                 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/catalog-fe/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
132         # side car containers
133         - name: {{ include "common.name" . }}-filebeat-onap
134           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
135           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
136           volumeMounts:
137           - name: {{ include "common.fullname" . }}-filebeat-conf
138             mountPath: /usr/share/filebeat/filebeat.yml
139             subPath: filebeat.yml
140           - name: {{ include "common.fullname" . }}-logs
141             mountPath: /var/log/onap
142           - name: {{ include "common.fullname" . }}-data-filebeat
143             mountPath: /usr/share/filebeat/data
144       volumes:
145         - name: {{ include "common.fullname" . }}-localtime
146           hostPath:
147             path: /etc/localtime
148         - name: sdc-cert
149           secret:
150             secretName: sdc-cert
151         - name: {{ include "common.fullname" . }}-filebeat-conf
152           configMap:
153             name: {{ include "common.release" . }}-sdc-filebeat-configmap
154         - name: {{ include "common.fullname" . }}-data-filebeat
155           emptyDir: {}
156         - name: {{ include "common.fullname" . }}-configs
157           configMap:
158             name : {{ include "common.fullname" . }}-plugins-configmap
159             defaultMode: 0777
160         - name: {{ include "common.fullname" . }}-logback
161           configMap:
162             name : {{ include "common.fullname" . }}-logging-configmap
163         - name: {{ include "common.fullname" . }}-environments
164           configMap:
165             name: {{ include "common.release" . }}-sdc-environments-configmap
166             defaultMode: 0755
167         - name: sdc-environments-output
168           emptyDir: { medium: "Memory" }
169         - name: {{ include "common.fullname" . }}-logs
170           emptyDir: {}
171       imagePullSecrets:
172       - name: "{{ include "common.namespace" . }}-docker-registry-key"