blob: 6f1e2a9b616000a127fa6fff32c51c0e9d80d946 [file] [log] [blame]
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +00001# Copyright © 2017 Amdocs, AT&T, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 ZTE
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
kwasiel59cc6a42020-07-23 10:02:49 +000016apiVersion: apps/v1
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000017kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000025 heritage: {{ .Release.Service }}
26spec:
kwasiel59cc6a42020-07-23 10:02:49 +000027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000030 replicas: {{ .Values.replicaCount }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000036 spec:
ChrisC742a7b22020-09-04 11:29:57 +020037 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000038 - name: {{ include "common.name" . }}-job-completion
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020039 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000040 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
41 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020042 - /app/ready.py
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000043 args:
44 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010045 - {{ include "common.release" . }}-sdc-onboarding-be-cassandra-init
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000046 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
ChrisC742a7b22020-09-04 11:29:57 +020052 {{- if .Values.global.aafEnabled }}
k.kedron2774ab12020-03-26 11:13:46 +010053 - name: {{ include "common.name" . }}-update-config
54 image: "{{ .Values.global.envsubstImage }}"
55 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56 command:
ChrisC742a7b22020-09-04 11:29:57 +020057 - sh
k.kedron2774ab12020-03-26 11:13:46 +010058 args:
ChrisC742a7b22020-09-04 11:29:57 +020059 - "-c"
60 - |
61 export $(grep '^c' {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
62 export KEYSTORE_PASS=$cadi_keystore_password_p12
63 export KEYMANAGER_PASS=$cadi_keystore_password_p12
64 export TRUSTSTORE_PASS=$cadi_truststore_password
65 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }} /config-output
66 cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }} /config-output
67 cd /config-input && \
68 for PFILE in `find . -not -type d | grep -v -F ..`
69 do
70 envsubst <${PFILE} >/config-output/${PFILE}
71 chmod 0755 /config-output/${PFILE}
72 done
73 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
k.kedron2774ab12020-03-26 11:13:46 +010074 - name: {{ include "common.fullname" . }}-environments
75 mountPath: /config-input/
76 - name: sdc-environments-output
77 mountPath: /config-output/
ChrisC742a7b22020-09-04 11:29:57 +020078 {{- end }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000079 containers:
80 - name: {{ include "common.name" . }}
81 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
82 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
83 ports:
84 - containerPort: {{ .Values.service.internalPort }}
85 - containerPort: {{ .Values.service.internalPort2 }}
86 {{ if eq .Values.liveness.enabled true }}
87 livenessProbe:
amitjaia4cef272019-01-08 15:29:42 +053088 exec:
89 command:
MichaelMorrisb137f7e2020-03-15 17:44:48 +000090 - "/var/lib/jetty/ready-probe.sh"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000091 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
92 periodSeconds: {{ .Values.liveness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050093 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000094 {{ end }}
95 readinessProbe:
96 exec:
97 command:
MichaelMorrisb137f7e2020-03-15 17:44:48 +000098 - "/var/lib/jetty/ready-probe.sh"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000099 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
100 periodSeconds: {{ .Values.readiness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -0500101 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mukula93baa82018-09-19 15:56:58 +0000102 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000103{{ include "common.resources" . | indent 12 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000104 env:
105 - name: ENVNAME
ChrisC742a7b22020-09-04 11:29:57 +0200106 value: {{ .Values.env.name }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000107 - name: JAVA_OPTIONS
108 value: {{ .Values.config.javaOptions }}
109 - name: SDC_CLUSTER_NAME
ChrisC742a7b22020-09-04 11:29:57 +0200110 value: "SDC-CS-{{ .Values.env.name }}"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000111 - name: cassandra_ssl_enabled
112 value: {{ .Values.config.cassandraSslEnabled | quote }}
113 - name: HOST_IP
114 valueFrom:
115 fieldRef:
116 fieldPath: status.podIP
117 - name: SDC_USER
118 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100119 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000120 - name: SDC_PASSWORD
121 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100122 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
kooper543d3aa2019-05-02 10:27:15 +0000123 - name: SDC_CERT_DIR
124 value: {{ .Values.cert.certDir }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000125 volumeMounts:
k.kedron2774ab12020-03-26 11:13:46 +0100126 - name: sdc-environments-output
MichaelMorrisb137f7e2020-03-15 17:44:48 +0000127 mountPath: /var/lib/jetty/chef-solo/environments/
ChrisC742a7b22020-09-04 11:29:57 +0200128 - name: sdc-environments-output
k.kedron2774ab12020-03-26 11:13:46 +0100129 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-onboard-backend/files/default/org.onap.sdc.p12
130 subPath: org.onap.sdc.p12
ChrisC742a7b22020-09-04 11:29:57 +0200131 - name: sdc-environments-output
k.kedron2774ab12020-03-26 11:13:46 +0100132 mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-onboard-backend/files/default/org.onap.sdc.trust.jks
133 subPath: org.onap.sdc.trust.jks
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000134 - name: {{ include "common.fullname" . }}-localtime
135 mountPath: /etc/localtime
136 readOnly: true
137 - name: {{ include "common.fullname" . }}-logs
138 mountPath: /var/log/onap
139 - name: {{ include "common.fullname" . }}-logback
140 mountPath: /tmp/logback.xml
141 subPath: logback.xml
142 lifecycle:
143 postStart:
144 exec:
145 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/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 +0000146 # 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
ChrisC742a7b22020-09-04 11:29:57 +0200158 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000159 - name: {{ include "common.fullname" . }}-localtime
160 hostPath:
161 path: /etc/localtime
162 - name: {{ include "common.fullname" . }}-filebeat-conf
163 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100164 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000165 - name: {{ include "common.fullname" . }}-data-filebeat
166 emptyDir: {}
167 - name: {{ include "common.fullname" . }}-logback
168 configMap:
169 name : {{ include "common.fullname" . }}-logging-configmap
170 - name: {{ include "common.fullname" . }}-environments
171 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100172 name: {{ include "common.release" . }}-sdc-environments-configmap
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000173 defaultMode: 0755
k.kedron2774ab12020-03-26 11:13:46 +0100174 - name: sdc-environments-output
175 emptyDir: { medium: "Memory" }
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000176 - name: {{ include "common.fullname" . }}-logs
177 emptyDir: {}
178 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000179 - name: "{{ include "common.namespace" . }}-docker-registry-key"