blob: 44439869ccb8f6bc96936e285256a29c0a76990c [file] [log] [blame]
Jakub Latusekd8eaff62020-10-21 13:36:29 +02001{{/*
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00002# Copyright © 2017 Amdocs, AT&T, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00003# Modifications Copyright © 2018 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
gummara72e6de2020-03-12 11:15:56 +000018apiVersion: apps/v1
Mandeep Khindaa1047f42018-03-22 02:12:15 +000019kind: Deployment
gummara72e6de2020-03-12 11:15:56 +000020metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000021spec:
gummara72e6de2020-03-12 11:15:56 +000022 selector: {{- include "common.selectors" . | nindent 4 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000023 replicas: {{ .Values.replicaCount }}
24 template:
gummara72e6de2020-03-12 11:15:56 +000025 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000026 spec:
ChrisC742a7b22020-09-04 11:29:57 +020027 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000028 - name: {{ include "common.name" . }}-readiness
29 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020030 - /app/ready.py
Mandeep Khindaa1047f42018-03-22 02:12:15 +000031 args:
32 - --container-name
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000033 - "sdc-onboarding-be"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000034 env:
35 - name: NAMESPACE
36 valueFrom:
37 fieldRef:
38 apiVersion: v1
39 fieldPath: metadata.namespace
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010040 image: {{ include "repositoryGenerator.image.readiness" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000041 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC32172342020-10-02 16:39:13 +020042 resources:
43 limits:
44 cpu: 100m
45 memory: 100Mi
46 requests:
47 cpu: 3m
48 memory: 20Mi
Mandeep Khindaa1047f42018-03-22 02:12:15 +000049 - name: {{ include "common.name" . }}-job-completion
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010050 image: {{ include "repositoryGenerator.image.readiness" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000051 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
52 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020053 - /app/ready.py
Mandeep Khindaa1047f42018-03-22 02:12:15 +000054 args:
55 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010056 - {{ include "common.release" . }}-sdc-onboarding-be-cassandra-init
Mandeep Khindaa1047f42018-03-22 02:12:15 +000057 env:
58 - name: NAMESPACE
59 valueFrom:
60 fieldRef:
61 apiVersion: v1
62 fieldPath: metadata.namespace
ChrisC32172342020-10-02 16:39:13 +020063 resources:
64 limits:
65 cpu: 100m
66 memory: 100Mi
67 requests:
68 cpu: 3m
69 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +020070 {{- if .Values.global.aafEnabled }}
k.kedron2774ab12020-03-26 11:13:46 +010071 - name: {{ include "common.name" . }}-update-config
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010072 image: {{ include "repositoryGenerator.image.envsubst" . }}
k.kedron2774ab12020-03-26 11:13:46 +010073 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74 command:
75 - sh
76 args:
ChrisC742a7b22020-09-04 11:29:57 +020077 - "-c"
78 - |
79 export $(grep '^c' {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
80 export KEYSTORE_PASS=$cadi_keystore_password_p12
81 export KEYMANAGER_PASS=$cadi_keystore_password_p12
82 export TRUSTSTORE_PASS=$cadi_truststore_password
83 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }} /config-output
84 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }} /config-output
85 cd /config-input && \
86 for PFILE in `find . -not -type d | grep -v -F ..`
87 do
88 envsubst <${PFILE} >/config-output/${PFILE}
89 chmod 0755 /config-output/${PFILE}
90 done
ChrisC32172342020-10-02 16:39:13 +020091 resources:
92 limits:
93 cpu: 100m
94 memory: 100Mi
95 requests:
96 cpu: 3m
97 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +020098 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
k.kedron2774ab12020-03-26 11:13:46 +010099 - name: {{ include "common.fullname" . }}-environments
100 mountPath: /config-input/
101 - name: sdc-environments-output
102 mountPath: /config-output/
ChrisC742a7b22020-09-04 11:29:57 +0200103 {{- end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000104 containers:
105 - name: {{ include "common.name" . }}
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +0100106 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000107 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC742a7b22020-09-04 11:29:57 +0200108 {{- if .Values.global.aafEnabled }}
109 command:
110 - sh
111 args:
112 - "-c"
113 - |
114 sed -i '/trustStorePassword/d' ${JETTY_BASE}/startup.sh
115 ${JETTY_BASE}/startup.sh
116 {{- end }}
gummara72e6de2020-03-12 11:15:56 +0000117 ports: {{ include "common.containerPorts" . | nindent 10 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000118 {{ if eq .Values.liveness.enabled true }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000119 livenessProbe:
Yang Xue5d5e682019-06-19 18:20:31 -0400120 httpGet:
shrek2000f336f6d2020-02-25 16:11:26 +0200121 path: /sdc2/rest/healthCheck
gummara72e6de2020-03-12 11:15:56 +0000122 port: {{ .Values.liveness.port }}
123 scheme: {{ if (include "common.needTLS" .) }}HTTPS{{ else }}HTTP{{ end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000124 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
125 periodSeconds: {{ .Values.liveness.periodSeconds }}
Yang Xu85608542019-06-16 23:25:32 -0400126 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000127 {{ end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000128 readinessProbe:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000129 exec:
130 command:
MichaelMorrisb137f7e2020-03-15 17:44:48 +0000131 - "/var/lib/jetty/ready-probe.sh"
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000132 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
133 periodSeconds: {{ .Values.readiness.periodSeconds }}
Yang Xu85608542019-06-16 23:25:32 -0400134 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
gummara72e6de2020-03-12 11:15:56 +0000135 resources: {{ include "common.resources" . | nindent 12 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000136 env:
137 - name: ENVNAME
ChrisC742a7b22020-09-04 11:29:57 +0200138 value: {{ .Values.env.name }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000139 - name: JAVA_OPTIONS
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000140 value: {{ .Values.config.javaOptions }}
141 - name: cassandra_ssl_enabled
142 value: {{ .Values.config.cassandraSslEnabled | quote }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000143 - name: HOST_IP
144 valueFrom:
145 fieldRef:
146 fieldPath: status.podIP
147 volumeMounts:
k.kedron2774ab12020-03-26 11:13:46 +0100148 - name: sdc-environments-output
MichaelMorrisb137f7e2020-03-15 17:44:48 +0000149 mountPath: /var/lib/jetty/chef-solo/environments/
ChrisC742a7b22020-09-04 11:29:57 +0200150 - name: sdc-environments-output
k.kedron2774ab12020-03-26 11:13:46 +0100151 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.p12
152 subPath: org.onap.sdc.p12
ChrisC742a7b22020-09-04 11:29:57 +0200153 - name: sdc-environments-output
k.kedron2774ab12020-03-26 11:13:46 +0100154 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-catalog-be/files/default/org.onap.sdc.trust.jks
155 subPath: org.onap.sdc.trust.jks
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000156 - name: {{ include "common.fullname" . }}-localtime
157 mountPath: /etc/localtime
158 readOnly: true
159 - name: {{ include "common.fullname" . }}-logs
160 mountPath: /var/log/onap
161 - name: {{ include "common.fullname" . }}-logback
162 mountPath: /tmp/logback.xml
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000163 subPath: logback.xml
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000164 lifecycle:
165 postStart:
166 exec:
167 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/catalog-be/; 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 +0000168 # side car containers
169 - name: {{ include "common.name" . }}-filebeat-onap
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +0100170 image: {{ include "repositoryGenerator.image.logging" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000171 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
172 volumeMounts:
173 - name: {{ include "common.fullname" . }}-filebeat-conf
174 mountPath: /usr/share/filebeat/filebeat.yml
175 subPath: filebeat.yml
176 - name: {{ include "common.fullname" . }}-logs
177 mountPath: /var/log/onap
178 - name: {{ include "common.fullname" . }}-data-filebeat
179 mountPath: /usr/share/filebeat/data
ChrisC32172342020-10-02 16:39:13 +0200180 resources:
181 limits:
182 cpu: 100m
183 memory: 100Mi
184 requests:
185 cpu: 3m
186 memory: 20Mi
ChrisC742a7b22020-09-04 11:29:57 +0200187 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000188 - name: {{ include "common.fullname" . }}-localtime
189 hostPath:
190 path: /etc/localtime
191 - name: {{ include "common.fullname" . }}-filebeat-conf
192 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100193 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000194 - name: {{ include "common.fullname" . }}-data-filebeat
195 emptyDir: {}
196 - name: {{ include "common.fullname" . }}-logback
197 configMap:
198 name : {{ include "common.fullname" . }}-logging-configmap
199 - name: {{ include "common.fullname" . }}-environments
200 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100201 name: {{ include "common.release" . }}-sdc-environments-configmap
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000202 defaultMode: 0755
k.kedron2774ab12020-03-26 11:13:46 +0100203 - name: sdc-environments-output
204 emptyDir: { medium: "Memory" }
205 - name: {{ include "common.fullname" . }}-logs
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000206 emptyDir: {}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000207 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000208 - name: "{{ include "common.namespace" . }}-docker-registry-key"