[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / sdc / charts / sdc-dcae-dt / templates / deployment.yaml
1 # Copyright © 2017 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: apps/v1
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   selector:
27     matchLabels:
28       app: {{ include "common.name" . }}
29   replicas: {{ .Values.replicaCount }}
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}
34         release: {{ include "common.release" . }}
35     spec:
36       initContainers:
37       - name: {{ include "common.name" . }}-readiness
38         command:
39         - /app/ready.py
40         args:
41         - --container-name
42         - sdc-dcae-be
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" . }}-job-completion
52         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
53         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
54         command:
55         - /app/ready.py
56         args:
57         - --job-name
58         - {{ include "common.release" . }}-sdc-dcae-be-tools
59         env:
60         - name: NAMESPACE
61           valueFrom:
62             fieldRef:
63               apiVersion: v1
64               fieldPath: metadata.namespace
65       - name: {{ include "common.name" . }}-update-config
66         image: "{{ .Values.global.envsubstImage }}"
67         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68         command:
69           - sh
70         args:
71           - -c
72           - "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"
73         env:
74           - name: KEYSTORE_PASS
75             valueFrom:
76               secretKeyRef:
77                 name: {{ include "common.release" . }}-sdc-cs-secrets
78                 key: keystore_password
79           - name: TRUSTSTORE_PASS
80             valueFrom:
81               secretKeyRef:
82                 name: {{ include "common.release" . }}-sdc-cs-secrets
83                 key: truststore_password
84         volumeMounts:
85           - name: {{ include "common.fullname" . }}-environments
86             mountPath: /config-input/
87           - name: sdc-environments-output
88             mountPath: /config-output/
89       containers:
90         - name: {{ include "common.name" . }}
91           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
92           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
93           ports:
94           - containerPort: {{ .Values.service.internalPort }}
95           {{ if eq .Values.liveness.enabled true }}
96           livenessProbe:
97             tcpSocket:
98               port: {{ .Values.service.internalPort }}
99             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
100             periodSeconds: {{ .Values.liveness.periodSeconds }}
101           {{ end }}
102           readinessProbe:
103             httpGet:
104               path: /dcae/healthCheckOld
105               port: {{ .Values.service.internalPort }}
106               scheme: HTTPS
107             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
108             periodSeconds: {{ .Values.readiness.periodSeconds }}
109           env:
110           - name: ENVNAME
111             value: {{ .Values.global.env.name }}
112           - name: JAVA_OPTIONS
113             value: {{ .Values.config.javaOptions }}
114           - name: HOST_IP
115             valueFrom:
116               fieldRef:
117                 fieldPath: status.podIP
118           volumeMounts:
119           - name: sdc-environments-output
120             mountPath: /var/lib/jetty/chef-solo/environments/
121           - name: sdc-cert
122             mountPath: /var/lib/jetty/chef-solo/cookbooks/dcae-dt/files/default/org.onap.sdc.p12
123             subPath: org.onap.sdc.p12
124           - name: sdc-cert
125             mountPath: /var/lib/jetty/chef-solo/cookbooks/dcae-dt/files/default/org.onap.sdc.trust.jks
126             subPath: org.onap.sdc.trust.jks
127           - name: {{ include "common.fullname" . }}-localtime
128             mountPath: /etc/localtime
129             readOnly: true
130           - name: {{ include "common.fullname" . }}-logs
131             mountPath: /var/lib/jetty/logs
132           - name: {{ include "common.fullname" . }}-logback
133             mountPath: /tmp/logback.xml
134             subPath: logback.xml
135           resources:
136 {{ include "common.resources" . | indent 12 }}
137         {{- if .Values.nodeSelector }}
138         nodeSelector:
139 {{ toYaml .Values.nodeSelector | indent 10 }}
140         {{- end -}}
141         {{- if .Values.affinity }}
142         affinity:
143 {{ toYaml .Values.affinity | indent 10 }}
144         {{- end }}
145
146         # side car containers
147         - name: {{ include "common.name" . }}-filebeat-onap
148           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
149           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
150           volumeMounts:
151           - name: {{ include "common.fullname" . }}-filebeat-conf
152             mountPath: /usr/share/filebeat/filebeat.yml
153             subPath: filebeat.yml
154           - name: {{ include "common.fullname" . }}-logs
155             mountPath: /var/log/onap
156           - name: {{ include "common.fullname" . }}-data-filebeat
157             mountPath: /usr/share/filebeat/data
158       volumes:
159         - name: {{ include "common.fullname" . }}-localtime
160           hostPath:
161             path: /etc/localtime
162         - name: sdc-cert
163           secret:
164             secretName: sdc-cert
165         - name: {{ include "common.fullname" . }}-filebeat-conf
166           configMap:
167             name: {{ include "common.release" . }}-sdc-filebeat-configmap
168         - name: {{ include "common.fullname" . }}-data-filebeat
169           emptyDir: {}
170         - name: {{ include "common.fullname" . }}-logback
171           configMap:
172             name : {{ include "common.fullname" . }}-logging-configmap
173         - name: {{ include "common.fullname" . }}-environments
174           configMap:
175             name: {{ include "common.release" . }}-sdc-environments-configmap
176             defaultMode: 0755
177         - name: sdc-environments-output
178           emptyDir: { medium: "Memory" }
179         - name: {{ include "common.fullname" . }}-logs
180           emptyDir: {}
181       imagePullSecrets:
182       - name: "{{ include "common.namespace" . }}-docker-registry-key"