blob: 45c7bc85b67f26830a88c754d74f0bde437f103f [file] [log] [blame]
Jakub Latusekd8eaff62020-10-21 13:36:29 +02001{{/*
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00002# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00003# Modifications Copyright © 2018 AT&T, ZTE
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Jakub Latusekd8eaff62020-10-21 13:36:29 +020016*/}}
Mandeep Khindab1f9efe2018-03-28 19:01:55 +000017
kwasiel59cc6a42020-07-23 10:02:49 +000018apiVersion: apps/v1
Mandeep Khindaa1047f42018-03-22 02:12:15 +000019kind: Deployment
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000027 heritage: {{ .Release.Service }}
28spec:
kwasiel59cc6a42020-07-23 10:02:49 +000029 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000032 replicas: {{ .Values.replicaCount }}
33 template:
34 metadata:
35 labels:
36 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010037 release: {{ include "common.release" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000038 spec:
ChrisC742a7b22020-09-04 11:29:57 +020039 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000040 - name: {{ include "common.name" . }}-job-completion
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010041 image: {{ include "repositoryGenerator.image.readiness" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000042 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
43 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020044 - /app/ready.py
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000045 args:
46 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010047 - {{ include "common.release" . }}-sdc-be-config-backend
ChrisC32172342020-10-02 16:39:13 +020048 - "-t"
49 - "35"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000050 env:
51 - name: NAMESPACE
52 valueFrom:
53 fieldRef:
54 apiVersion: v1
55 fieldPath: metadata.namespace
ChrisC32172342020-10-02 16:39:13 +020056 resources:
57 limits:
58 cpu: 100m
59 memory: 100Mi
60 requests:
61 cpu: 3m
62 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +020063 {{- if .Values.global.aafEnabled }}
k.kedron2774ab12020-03-26 11:13:46 +010064 - name: {{ include "common.name" . }}-update-config
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010065 image: {{ include "repositoryGenerator.image.envsubst" . }}
k.kedron2774ab12020-03-26 11:13:46 +010066 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
67 command:
ChrisC742a7b22020-09-04 11:29:57 +020068 - sh
k.kedron2774ab12020-03-26 11:13:46 +010069 args:
ChrisC742a7b22020-09-04 11:29:57 +020070 - "-c"
71 - |
72 export $(grep '^c' {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
73 export KEYSTORE_PASS=$cadi_keystore_password_p12
74 export KEYMANAGER_PASS=$cadi_keystore_password_p12
75 export TRUSTSTORE_PASS=$cadi_truststore_password
76 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }} /config-output
77 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }} /config-output
78 cd /config-input && \
79 for PFILE in `find . -not -type d | grep -v -F ..`
80 do
81 envsubst <${PFILE} >/config-output/${PFILE}
82 chmod 0755 /config-output/${PFILE}
83 done
84 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
k.kedron2774ab12020-03-26 11:13:46 +010085 - name: {{ include "common.fullname" . }}-environments
86 mountPath: /config-input/
87 - name: sdc-environments-output
88 mountPath: /config-output/
ChrisC32172342020-10-02 16:39:13 +020089 resources:
90 limits:
91 cpu: 100m
92 memory: 100Mi
93 requests:
94 cpu: 3m
95 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +020096 {{- end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000097 containers:
98 - name: {{ include "common.name" . }}
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010099 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000100 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC742a7b22020-09-04 11:29:57 +0200101 {{- if .Values.global.aafEnabled }}
102 command:
103 - sh
104 args:
105 - "-c"
106 - |
107 sed -i '/trustStorePassword/d' ${JETTY_BASE}/startup.sh
108 ${JETTY_BASE}/startup.sh
109 {{- end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000110 ports:
111 - containerPort: {{ .Values.service.internalPort }}
112 - containerPort: {{ .Values.service.internalPort2 }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000113 {{ if eq .Values.liveness.enabled true }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000114 livenessProbe:
115 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +0200116 port: {{ .Values.service.internalPort2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000117 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
118 periodSeconds: {{ .Values.liveness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -0500119 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000120 {{ end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000121 readinessProbe:
122 tcpSocket:
k.kedronc784bbd2019-09-05 18:28:16 +0200123 port: {{ .Values.service.internalPort2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000124 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
125 periodSeconds: {{ .Values.readiness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -0500126 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
ChrisC32172342020-10-02 16:39:13 +0200127 resources: {{ include "common.resources" . | nindent 12 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000128 env:
129 - name: ENVNAME
ChrisC742a7b22020-09-04 11:29:57 +0200130 value: {{ .Values.env.name }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000131 - name: HOST_IP
132 valueFrom:
133 fieldRef:
134 fieldPath: status.podIP
135 - name: JAVA_OPTIONS
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000136 value: {{ .Values.config.javaOptions }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000137 volumeMounts:
k.kedron2774ab12020-03-26 11:13:46 +0100138 - name: sdc-environments-output
MichaelMorrisb137f7e2020-03-15 17:44:48 +0000139 mountPath: /var/lib/jetty/chef-solo/environments/
ChrisC742a7b22020-09-04 11:29:57 +0200140 - name: sdc-environments-output
k.kedron2774ab12020-03-26 11:13:46 +0100141 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.p12
142 subPath: org.onap.sdc.p12
ChrisC742a7b22020-09-04 11:29:57 +0200143 - name: sdc-environments-output
k.kedron2774ab12020-03-26 11:13:46 +0100144 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-fe/files/default/org.onap.sdc.trust.jks
145 subPath: org.onap.sdc.trust.jks
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000146 - name: {{ include "common.fullname" . }}-localtime
147 mountPath: /etc/localtime
148 readOnly: true
149 - name: {{ include "common.fullname" . }}-logs
150 mountPath: /var/log/onap
shrikantawachar0c84bc32019-01-16 13:12:21 +0530151 - name: {{ include "common.fullname" . }}-configs
152 mountPath: /var/lib/jetty/config/catalog-fe/plugins-configuration.yaml
153 subPath: plugins-configuration.yaml
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000154 - name: {{ include "common.fullname" . }}-logback
155 mountPath: /tmp/logback.xml
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000156 subPath: logback.xml
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000157 lifecycle:
158 postStart:
159 exec:
160 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"]
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000161 # side car containers
162 - name: {{ include "common.name" . }}-filebeat-onap
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +0100163 image: {{ include "repositoryGenerator.image.logging" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000164 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
165 volumeMounts:
166 - name: {{ include "common.fullname" . }}-filebeat-conf
167 mountPath: /usr/share/filebeat/filebeat.yml
168 subPath: filebeat.yml
169 - name: {{ include "common.fullname" . }}-logs
170 mountPath: /var/log/onap
171 - name: {{ include "common.fullname" . }}-data-filebeat
172 mountPath: /usr/share/filebeat/data
ChrisC32172342020-10-02 16:39:13 +0200173 resources:
174 limits:
175 cpu: 100m
176 memory: 100Mi
177 requests:
178 cpu: 3m
179 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +0200180 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000181 - name: {{ include "common.fullname" . }}-localtime
182 hostPath:
183 path: /etc/localtime
184 - name: {{ include "common.fullname" . }}-filebeat-conf
185 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100186 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000187 - name: {{ include "common.fullname" . }}-data-filebeat
188 emptyDir: {}
shrikantawachar0c84bc32019-01-16 13:12:21 +0530189 - name: {{ include "common.fullname" . }}-configs
190 configMap:
191 name : {{ include "common.fullname" . }}-plugins-configmap
192 defaultMode: 0777
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000193 - name: {{ include "common.fullname" . }}-logback
194 configMap:
195 name : {{ include "common.fullname" . }}-logging-configmap
196 - name: {{ include "common.fullname" . }}-environments
197 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100198 name: {{ include "common.release" . }}-sdc-environments-configmap
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000199 defaultMode: 0755
k.kedron2774ab12020-03-26 11:13:46 +0100200 - name: sdc-environments-output
201 emptyDir: { medium: "Memory" }
202 - name: {{ include "common.fullname" . }}-logs
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000203 emptyDir: {}
204 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000205 - name: "{{ include "common.namespace" . }}-docker-registry-key"