blob: a8e9403ef4a629bcb1ed3942690e772ba90d4813 [file] [log] [blame]
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +03001# Copyright © 2018 Amdocs, AT&T, 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
kwasiel59cc6a42020-07-23 10:02:49 +000015apiVersion: apps/v1
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030016kind: Deployment
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030024 heritage: {{ .Release.Service }}
25spec:
kwasiel59cc6a42020-07-23 10:02:49 +000026 selector:
27 matchLabels:
28 app: {{ include "common.name" . }}
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030029 replicas: {{ .Values.replicaCount }}
30 template:
31 metadata:
32 labels:
33 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010034 release: {{ include "common.release" . }}
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030035 spec:
36 initContainers:
37 - name: {{ include "common.name" . }}-readiness
38 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020039 - /app/ready.py
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030040 args:
41 - --container-name
42 - "sdc-be"
43 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020049 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030050 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51 - name: {{ include "common.name" . }}-job-completion
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020052 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030053 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
54 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020055 - /app/ready.py
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030056 args:
57 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010058 - {{ include "common.release" . }}-sdc-be-config-backend
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030059 env:
60 - name: NAMESPACE
61 valueFrom:
62 fieldRef:
63 apiVersion: v1
64 fieldPath: metadata.namespace
k.kedron2774ab12020-03-26 11:13:46 +010065 - 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/
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030089 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 - containerPort: {{ .Values.service.internalPort2 }}
96 {{ if eq .Values.liveness.enabled true }}
97 livenessProbe:
98 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +020099 port: {{ .Values.service.internalPort2 }}
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300100 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
101 periodSeconds: {{ .Values.liveness.periodSeconds }}
102 {{ end }}
103 readinessProbe:
104 httpGet:
105 path: /dcae/conf/composition
k.kedronc784bbd2019-09-05 18:28:16 +0200106 port: {{ .Values.service.internalPort2 }}
107 scheme: HTTPS
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300108 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
109 periodSeconds: {{ .Values.readiness.periodSeconds }}
110 env:
111 - name: ENVNAME
112 value: {{ .Values.global.env.name }}
113 - name: JAVA_OPTIONS
114 value: {{ .Values.config.javaOptions }}
115 - name: HOST_IP
116 valueFrom:
117 fieldRef:
118 fieldPath: status.podIP
119 volumeMounts:
k.kedron2774ab12020-03-26 11:13:46 +0100120 - name: sdc-environments-output
MichaelMorrisb137f7e2020-03-15 17:44:48 +0000121 mountPath: /var/lib/jetty/chef-solo/environments/
k.kedron2774ab12020-03-26 11:13:46 +0100122 - name: sdc-cert
123 mountPath: /var/lib/jetty/chef-solo/cookbooks/Deploy-DCAE/files/default/org.onap.sdc.p12
124 subPath: org.onap.sdc.p12
125 - name: sdc-cert
126 mountPath: /var/lib/jetty/chef-solo/cookbooks/Deploy-DCAE/files/default/org.onap.sdc.trust.jks
127 subPath: org.onap.sdc.trust.jks
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300128 - name: {{ include "common.fullname" . }}-localtime
129 mountPath: /etc/localtime
130 readOnly: true
131 - name: {{ include "common.fullname" . }}-logs
k.kedronc784bbd2019-09-05 18:28:16 +0200132 mountPath: /var/lib/jetty/logs
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300133 - name: {{ include "common.fullname" . }}-logback
134 mountPath: /tmp/logback.xml
135 subPath: logback.xml
136 lifecycle:
137 postStart:
138 exec:
139 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/dcae-be/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
140 resources:
141{{ include "common.resources" . | indent 12 }}
142 {{- if .Values.nodeSelector }}
143 nodeSelector:
144{{ toYaml .Values.nodeSelector | indent 10 }}
145 {{- end -}}
146 {{- if .Values.affinity }}
147 affinity:
148{{ toYaml .Values.affinity | indent 10 }}
149 {{- end }}
150
151 # side car containers
152 - name: {{ include "common.name" . }}-filebeat-onap
153 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
154 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
155 volumeMounts:
156 - name: {{ include "common.fullname" . }}-filebeat-conf
157 mountPath: /usr/share/filebeat/filebeat.yml
158 subPath: filebeat.yml
159 - name: {{ include "common.fullname" . }}-logs
160 mountPath: /var/log/onap
161 - name: {{ include "common.fullname" . }}-data-filebeat
162 mountPath: /usr/share/filebeat/data
163 volumes:
164 - name: {{ include "common.fullname" . }}-localtime
165 hostPath:
166 path: /etc/localtime
k.kedron2774ab12020-03-26 11:13:46 +0100167 - name: sdc-cert
168 secret:
169 secretName: sdc-cert
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300170 - name: {{ include "common.fullname" . }}-filebeat-conf
171 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100172 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300173 - name: {{ include "common.fullname" . }}-data-filebeat
174 emptyDir: {}
175 - name: {{ include "common.fullname" . }}-logback
176 configMap:
177 name : {{ include "common.fullname" . }}-logging-configmap
178 - name: {{ include "common.fullname" . }}-environments
179 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100180 name: {{ include "common.release" . }}-sdc-environments-configmap
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300181 defaultMode: 0755
k.kedron2774ab12020-03-26 11:13:46 +0100182 - name: sdc-environments-output
183 emptyDir: { medium: "Memory" }
184 - name: {{ include "common.fullname" . }}-logs
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300185 emptyDir: {}
186 imagePullSecrets:
187 - name: "{{ include "common.namespace" . }}-docker-registry-key"