blob: 2bd53ff91b51e053c1b437f71bd37b103f5b0db5 [file] [log] [blame]
Jakub Latusekd8eaff62020-10-21 13:36:29 +02001{{/*
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +00002# Copyright © 2017 Amdocs, AT&T, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00003# Modifications Copyright © 2018 ZTE
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +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 Khinda51a8b1b2018-04-24 20:05:32 +000017
kwasiel59cc6a42020-07-23 10:02:49 +000018apiVersion: apps/v1
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +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 Khinda51a8b1b2018-04-24 20:05:32 +000027 heritage: {{ .Release.Service }}
28spec:
kwasiel59cc6a42020-07-23 10:02:49 +000029 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +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 Khinda51a8b1b2018-04-24 20:05:32 +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-onboarding-be-cassandra-init
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000048 env:
49 - name: NAMESPACE
50 valueFrom:
51 fieldRef:
52 apiVersion: v1
53 fieldPath: metadata.namespace
ChrisC32172342020-10-02 16:39:13 +020054 resources:
55 limits:
56 cpu: 100m
57 memory: 100Mi
58 requests:
59 cpu: 3m
60 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +020061 {{- if .Values.global.aafEnabled }}
k.kedron2774ab12020-03-26 11:13:46 +010062 - name: {{ include "common.name" . }}-update-config
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010063 image: {{ include "repositoryGenerator.image.envsubst" . }}
k.kedron2774ab12020-03-26 11:13:46 +010064 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65 command:
ChrisC742a7b22020-09-04 11:29:57 +020066 - sh
k.kedron2774ab12020-03-26 11:13:46 +010067 args:
ChrisC742a7b22020-09-04 11:29:57 +020068 - "-c"
69 - |
70 export $(grep '^c' {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
71 export KEYSTORE_PASS=$cadi_keystore_password_p12
72 export KEYMANAGER_PASS=$cadi_keystore_password_p12
73 export TRUSTSTORE_PASS=$cadi_truststore_password
74 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }} /config-output
75 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }} /config-output
76 cd /config-input && \
77 for PFILE in `find . -not -type d | grep -v -F ..`
78 do
79 envsubst <${PFILE} >/config-output/${PFILE}
80 chmod 0755 /config-output/${PFILE}
81 done
82 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
k.kedron2774ab12020-03-26 11:13:46 +010083 - name: {{ include "common.fullname" . }}-environments
84 mountPath: /config-input/
85 - name: sdc-environments-output
86 mountPath: /config-output/
ChrisC32172342020-10-02 16:39:13 +020087 resources:
88 limits:
89 cpu: 100m
90 memory: 100Mi
91 requests:
92 cpu: 3m
93 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +020094 {{- end }}
Krzysztof Kuzmicki868a2802020-11-20 17:00:27 +010095 - name: volume-permissions
Sylvain Desbureaux80f32ff2021-05-03 15:24:59 +020096 image: {{ include "repositoryGenerator.image.busybox" . }}
Krzysztof Kuzmicki868a2802020-11-20 17:00:27 +010097 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
98 command:
99 - sh
100 args:
101 - "-c"
102 - |
103 chown -R {{ .Values.securityContext.runAsUser }}:{{ .Values.securityContext.fsGroup }} //onboard/cert
104 securityContext:
105 runAsUser: 0
106 volumeMounts:
107 - name: {{ include "common.fullname" . }}-cert-storage
108 mountPath: "/onboard/cert"
109 resources:
110 limits:
111 cpu: 100m
112 memory: 100Mi
113 requests:
114 cpu: 3m
115 memory: 20Mi
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000116 containers:
117 - name: {{ include "common.name" . }}
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +0100118 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000119 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
120 ports:
121 - containerPort: {{ .Values.service.internalPort }}
122 - containerPort: {{ .Values.service.internalPort2 }}
123 {{ if eq .Values.liveness.enabled true }}
124 livenessProbe:
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +0200125 httpGet:
126 path: /onboarding-api/v1.0/healthcheck
127 port: {{ .Values.service.internalPort2 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000128 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
129 periodSeconds: {{ .Values.liveness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -0500130 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +0200131 successThreshold: {{ .Values.liveness.successThreshold }}
132 failureThreshold: {{ .Values.liveness.failureThreshold }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000133 {{ end }}
134 readinessProbe:
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +0200135 httpGet:
136 path: /onboarding-api/v1.0/healthcheck
137 port: {{ .Values.service.internalPort2 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000138 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
139 periodSeconds: {{ .Values.readiness.periodSeconds }}
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +0200140 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
141 successThreshold: {{ .Values.readiness.successThreshold }}
142 failureThreshold: {{ .Values.readiness.failureThreshold }}
143 startupProbe:
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +0200144 httpGet:
145 path: /onboarding-api/v1.0/healthcheck
146 port: {{ .Values.service.internalPort2 }}
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +0200147 initialDelaySeconds: {{ .Values.startup.initialDelaySeconds }}
148 periodSeconds: {{ .Values.startup.periodSeconds }}
149 timeoutSeconds: {{ .Values.startup.timeoutSeconds }}
150 successThreshold: {{ .Values.startup.successThreshold }}
151 failureThreshold: {{ .Values.startup.failureThreshold }}
ChrisC32172342020-10-02 16:39:13 +0200152 resources: {{ include "common.resources" . | nindent 12 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000153 env:
154 - name: ENVNAME
ChrisC742a7b22020-09-04 11:29:57 +0200155 value: {{ .Values.env.name }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000156 - name: JAVA_OPTIONS
157 value: {{ .Values.config.javaOptions }}
158 - name: SDC_CLUSTER_NAME
ChrisC742a7b22020-09-04 11:29:57 +0200159 value: "SDC-CS-{{ .Values.env.name }}"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000160 - name: cassandra_ssl_enabled
161 value: {{ .Values.config.cassandraSslEnabled | quote }}
162 - name: HOST_IP
163 valueFrom:
164 fieldRef:
165 fieldPath: status.podIP
166 - name: SDC_USER
167 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100168 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000169 - name: SDC_PASSWORD
170 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100171 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
kooper543d3aa2019-05-02 10:27:15 +0000172 - name: SDC_CERT_DIR
173 value: {{ .Values.cert.certDir }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000174 volumeMounts:
k.kedron2774ab12020-03-26 11:13:46 +0100175 - name: sdc-environments-output
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +0200176 mountPath: /app/jetty/chef-solo/environments/
ChrisC742a7b22020-09-04 11:29:57 +0200177 - name: sdc-environments-output
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +0200178 mountPath: /app/jetty/chef-solo/cookbooks/sdc-onboard-backend/files/default/org.onap.sdc.p12
k.kedron2774ab12020-03-26 11:13:46 +0100179 subPath: org.onap.sdc.p12
ChrisC742a7b22020-09-04 11:29:57 +0200180 - name: sdc-environments-output
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +0200181 mountPath: /app/jetty/chef-solo/cookbooks/sdc-onboard-backend/files/default/org.onap.sdc.trust.jks
k.kedron2774ab12020-03-26 11:13:46 +0100182 subPath: org.onap.sdc.trust.jks
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000183 - name: {{ include "common.fullname" . }}-localtime
184 mountPath: /etc/localtime
185 readOnly: true
186 - name: {{ include "common.fullname" . }}-logs
187 mountPath: /var/log/onap
sebdete33ecd12020-11-04 18:22:19 +0100188 - name: {{ include "common.fullname" . }}-cert-storage
189 mountPath: "{{ .Values.cert.certDir }}"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000190 - name: {{ include "common.fullname" . }}-logback
191 mountPath: /tmp/logback.xml
192 subPath: logback.xml
193 lifecycle:
194 postStart:
195 exec:
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +0200196 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/app/jetty/config/onboarding-be/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000197 # side car containers
198 - name: {{ include "common.name" . }}-filebeat-onap
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +0100199 image: {{ include "repositoryGenerator.image.logging" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000200 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
201 volumeMounts:
202 - name: {{ include "common.fullname" . }}-filebeat-conf
203 mountPath: /usr/share/filebeat/filebeat.yml
204 subPath: filebeat.yml
205 - name: {{ include "common.fullname" . }}-logs
206 mountPath: /var/log/onap
207 - name: {{ include "common.fullname" . }}-data-filebeat
208 mountPath: /usr/share/filebeat/data
ChrisC32172342020-10-02 16:39:13 +0200209 resources:
210 limits:
211 cpu: 100m
212 memory: 100Mi
213 requests:
214 cpu: 3m
215 memory: 20Mi
farida azmy1383b4c2021-04-06 12:33:31 +0200216 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
ChrisC742a7b22020-09-04 11:29:57 +0200217 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000218 - name: {{ include "common.fullname" . }}-localtime
219 hostPath:
220 path: /etc/localtime
221 - name: {{ include "common.fullname" . }}-filebeat-conf
222 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100223 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000224 - name: {{ include "common.fullname" . }}-data-filebeat
225 emptyDir: {}
226 - name: {{ include "common.fullname" . }}-logback
227 configMap:
228 name : {{ include "common.fullname" . }}-logging-configmap
229 - name: {{ include "common.fullname" . }}-environments
230 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100231 name: {{ include "common.release" . }}-sdc-environments-configmap
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000232 defaultMode: 0755
k.kedron2774ab12020-03-26 11:13:46 +0100233 - name: sdc-environments-output
234 emptyDir: { medium: "Memory" }
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000235 - name: {{ include "common.fullname" . }}-logs
236 emptyDir: {}
sebdete33ecd12020-11-04 18:22:19 +0100237 - name: {{ include "common.fullname" . }}-cert-storage
238 persistentVolumeClaim:
239 claimName: {{ include "common.fullname" . }}-cert
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000240 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000241 - name: "{{ include "common.namespace" . }}-docker-registry-key"