Merge "Bump version of readiness image"
[oom.git] / kubernetes / sdnc / templates / statefulset.yaml
1 {{/*
2 # Copyright © 2020 Samsung Electronics
3 # Copyright © 2017 Amdocs, Bell Canada
4 #
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.
16 */}}
17
18 apiVersion: apps/v1beta1
19 kind: StatefulSet
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   serviceName: {{ include "common.servicename" . }}-cluster
30   replicas: {{ .Values.replicaCount }}
31   podManagementPolicy: Parallel
32   template:
33     metadata:
34       labels:
35         app: {{ include "common.name" . }}
36         release: {{ include "common.release" . }}
37     spec:
38       initContainers:
39       - command:
40         - sh
41         args:
42         - -c
43         - "cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done"
44         env:
45         - name: AAI_CLIENT_NAME
46           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "aai-user-creds" "key" "login") | indent 10 }}
47         - name: AAI_CLIENT_PASSWORD
48           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "aai-user-creds" "key" "password") | indent 10 }}
49         - name: MODELSERVICE_USER
50           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "modeling-user-creds" "key" "login") | indent 10 }}
51         - name: MODELSERVICE_PASSWORD
52           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "modeling-user-creds" "key" "password") | indent 10 }}
53         - name: RESTCONF_USER
54           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restconf-creds" "key" "login") | indent 10 }}
55         - name: RESTCONF_PASSWORD
56           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restconf-creds" "key" "password") | indent 10 }}
57         - name: ANSIBLE_USER
58           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ansible-creds" "key" "login") | indent 10 }}
59         - name: ANSIBLE_PASSWORD
60           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ansible-creds" "key" "password") | indent 10 }}
61         - name: SCALEOUT_USER
62           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "scaleout-creds" "key" "login") | indent 10 }}
63         - name: SCALEOUT_PASSWORD
64           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "scaleout-creds" "key" "password") | indent 10 }}
65         - name: NETBOX_APIKEY
66           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "netbox-apikey" "key" "password") | indent 10 }}
67         - name: SDNC_DB_USER
68           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
69         - name: SDNC_DB_PASSWORD
70           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
71         volumeMounts:
72         - mountPath: /config-input
73           name: config-input
74         - mountPath: /config
75           name: properties
76         image: "{{ .Values.global.envsubstImage }}"
77         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
78         name: {{ include "common.name" . }}-update-config
79
80       - command:
81         - /root/ready.py
82         args:
83         - --container-name
84         - {{ include "common.mariadbService" . }}
85         env:
86         - name: NAMESPACE
87           valueFrom:
88             fieldRef:
89               apiVersion: v1
90               fieldPath: metadata.namespace
91         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
92         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
93         name: {{ include "common.name" . }}-readiness
94       {{ if .Values.global.aafEnabled }}
95 {{ include "common.aaf-config" . | indent 6 }}
96       {{ end }}
97       - name: {{ include "common.name" . }}-chown
98         image: "busybox"
99         command: ["sh", "-c", "chown -R {{ .Values.config.odlUid }}:{{ .Values.config.odlGid}} {{ .Values.persistence.mdsalPath }} ; chown -R {{ .Values.config.odlUid }}:{{ .Values.config.odlGid}} {{ .Values.certpersistence.certPath }}"]
100         volumeMounts:
101           - mountPath: {{ .Values.persistence.mdsalPath }}
102             name: {{ include "common.fullname" . }}-data
103 {{- if .Values.global.aafEnabled }}
104 {{ include "common.aaf-config-volume-mountpath" . | indent 10 }}
105 {{- end }}
106       containers:
107         - name: {{ include "common.name" . }}
108           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
109           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
110           command: ["/bin/bash"]
111           args: ["-c", "/opt/sdnc/bin/startODL.sh"]
112           ports:
113           - containerPort: {{ .Values.service.internalPort }}
114           - containerPort: {{ .Values.service.internalPort2 }}
115           - containerPort: {{ .Values.service.internalPort3 }}
116           - containerPort: {{ .Values.service.clusterPort }}
117           readinessProbe:
118             tcpSocket:
119               port: {{ .Values.service.internalPort }}
120             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
121             periodSeconds: {{ .Values.readiness.periodSeconds }}
122           env:
123           - name: MYSQL_ROOT_PASSWORD
124             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-root-password" "key" "password") | indent 12 }}
125           - name: ODL_ADMIN_USERNAME
126             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "odl-creds" "key" "login") | indent 12 }}
127           - name: ODL_ADMIN_PASSWORD
128             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "odl-creds" "key" "password") | indent 12 }}
129           - name: SDNC_DB_USER
130             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 12 }}
131           - name: SDNC_DB_PASSWORD
132             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 12 }}
133           - name: SDNC_CONFIG_DIR
134             value: "{{ .Values.config.configDir }}"
135           - name: ENABLE_ODL_CLUSTER
136             value: "{{ .Values.config.enableClustering }}"
137           - name: MY_ODL_CLUSTER
138             value: "{{ .Values.config.myODLCluster }}"
139           - name: PEER_ODL_CLUSTER
140             value: "{{ .Values.config.peerODLCluster }}"
141           - name: IS_PRIMARY_CLUSTER
142             value: "{{ .Values.config.isPrimaryCluster }}"
143           - name: GEO_ENABLED
144             value: "{{ .Values.config.geoEnabled}}"
145           - name: SDNC_AAF_ENABLED
146             value: "{{ .Values.global.aafEnabled}}"
147           - name: SDNC_REPLICAS
148             value: "{{ .Values.replicaCount }}"
149           - name: MYSQL_HOST
150             value: {{ include "common.mariadbService" . }}
151           - name: JAVA_HOME
152             value: "{{ .Values.config.javaHome}}"
153           volumeMounts:
154           {{- if .Values.global.aafEnabled }}
155 {{ include "common.aaf-config-volume-mountpath" . | indent 10 }}
156           {{- end }}
157           - mountPath: /etc/localtime
158             name: localtime
159             readOnly: true
160           - mountPath: /opt/opendaylight/current/etc/org.ops4j.pax.logging.cfg
161             name: sdnc-logging-cfg-config
162             subPath: org.ops4j.pax.logging.cfg
163           - mountPath: {{ .Values.config.binDir }}/startODL.sh
164             name: bin
165             subPath: startODL.sh
166           - mountPath: {{ .Values.config.binDir }}/installSdncDb.sh
167             name: bin
168             subPath: installSdncDb.sh
169           - mountPath: {{ .Values.config.ccsdkConfigDir }}/aaiclient.properties
170             name: properties
171             subPath: aaiclient.properties
172           - mountPath: {{ .Values.config.configDir }}/aaiclient.properties
173             name: properties
174             subPath: aaiclient.properties
175           - mountPath: {{ .Values.config.configDir }}/dblib.properties
176             name: properties
177             subPath: dblib.properties
178           - mountPath: {{ .Values.config.configDir }}/lcm-dg.properties
179             name: properties
180             subPath: lcm-dg.properties
181           - mountPath: {{ .Values.config.configDir }}/svclogic.properties
182             name: properties
183             subPath: svclogic.properties
184           - mountPath: /opt/onap/sdnc/svclogic/config/svclogic.properties
185             name: properties
186             subPath: svclogic.properties
187           - mountPath: {{ .Values.config.configDir }}/netbox.properties
188             name: properties
189             subPath: netbox.properties
190           - mountPath: {{ .Values.config.configDir }}/blueprints-processor-adaptor.properties
191             name: properties
192             subPath: blueprints-processor-adaptor.properties
193           - mountPath: {{ .Values.persistence.mdsalPath }}
194             name: {{ include "common.fullname" . }}-data
195           - mountPath: /var/log/onap
196             name: logs
197           - mountPath: {{ .Values.config.odl.salConfigDir }}/{{ .Values.config.odl.salConfigVersion}}/sal-clustering-config-{{ .Values.config.odl.salConfigVersion}}-akkaconf.xml
198             name: properties
199             subPath: akka.conf
200           - mountPath: {{ .Values.config.odl.etcDir }}/org.opendaylight.controller.cluster.datastore.cfg
201             name: properties
202             subPath: org.opendaylight.controller.cluster.datastore.cfg
203           - mountPath: {{ .Values.config.odl.binDir }}/setenv
204             name: properties
205             subPath: setenv
206           resources:
207 {{ include "common.resources" . | indent 12 }}
208         {{- if .Values.nodeSelector }}
209         nodeSelector:
210 {{ toYaml .Values.nodeSelector | indent 10 }}
211         {{- end -}}
212         {{- if .Values.affinity }}
213         affinity:
214 {{ toYaml .Values.affinity | indent 10 }}
215         {{- end }}
216
217         # side car containers
218         - name: filebeat-onap
219           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
220           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
221           volumeMounts:
222           - mountPath: /usr/share/filebeat/filebeat.yml
223             name: filebeat-conf
224             subPath: filebeat.yml
225           - mountPath: /var/log/onap
226             name: logs
227           - mountPath: /usr/share/filebeat/data
228             name: data-filebeat
229       imagePullSecrets:
230       - name: "{{ include "common.namespace" . }}-docker-registry-key"
231       volumes:
232         - name: localtime
233           hostPath:
234             path: /etc/localtime
235         - name: logs
236           emptyDir: {}
237         - name: data-filebeat
238           emptyDir: {}
239         - name: filebeat-conf
240           configMap:
241             name: {{ include "common.fullname" . }}-filebeat-configmap
242         - name: sdnc-logging-cfg-config
243           configMap:
244             name: {{ include "common.fullname" . }}-log-configmap
245         - name: bin
246           configMap:
247             name: {{ include "common.fullname" . }}-bin
248             defaultMode: 0755
249         - name: config-input
250           configMap:
251             name: {{ include "common.fullname" . }}-properties
252             defaultMode: 0644
253         - name: properties
254           emptyDir:
255             medium: Memory
256   {{ if not .Values.persistence.enabled }}
257         - name: {{ include "common.fullname" . }}-data
258           emptyDir: {}
259   {{ else }}
260   {{- if .Values.global.aafEnabled }}
261 {{ include "common.aaf-config-volumes" . | indent 8 }}
262   {{- end }}
263   volumeClaimTemplates:
264   - metadata:
265       name: {{ include "common.fullname" . }}-data
266       labels:
267         name: {{ include "common.fullname" . }}
268         chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
269         release: "{{ include "common.release" . }}"
270         heritage: "{{ .Release.Service }}"
271     spec:
272       accessModes:
273       - {{ .Values.persistence.accessMode }}
274       storageClassName: {{ include "common.storageClass" . }}
275       resources:
276         requests:
277           storage: {{ .Values.persistence.size }}
278   {{- end }}