blob: 9a62426adb4003cf5666ffc0086ed9a88ce6aebd [file] [log] [blame]
Mukul2b4e7532018-08-03 10:41:29 +00001# Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Mike Elliott13fed112018-02-28 08:33:33 -050015apiVersion: apps/v1beta1
16kind: StatefulSet
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
Mike Elliott13fed112018-02-28 08:33:33 -050024 heritage: {{ .Release.Service }}
25spec:
26 serviceName: "{{ .Values.service.name }}-cluster"
27 replicas: {{ .Values.replicaCount }}
28 podManagementPolicy: Parallel
29 template:
30 metadata:
31 labels:
32 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010033 release: {{ include "common.release" . }}
Mike Elliott13fed112018-02-28 08:33:33 -050034 spec:
35 initContainers:
Taka Cho31eb2452019-06-24 21:10:50 -040036 - name: {{ include "common.name" . }}-readiness
37 command:
Mike Elliott13fed112018-02-28 08:33:33 -050038 - /root/ready.py
39 args:
40 - --container-name
pramod47b1b822018-08-28 15:41:45 +000041 - {{.Values.config.mariadbGaleraContName}}
Mike Elliott13fed112018-02-28 08:33:33 -050042 env:
43 - name: NAMESPACE
44 valueFrom:
45 fieldRef:
46 apiVersion: v1
47 fieldPath: metadata.namespace
48 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
49 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Taka Cho31eb2452019-06-24 21:10:50 -040050 - name: {{ include "common.name" . }}-chown
51 image: "busybox"
52 command: ["sh", "-c", "chown -R {{ .Values.config.odlUid }}:{{ .Values.config.odlGid}} {{ .Values.persistence.mdsalPath }}"]
53 volumeMounts:
54 - mountPath: {{ .Values.persistence.mdsalPath }}
55 name: {{ include "common.fullname" . }}-data
Mike Elliott13fed112018-02-28 08:33:33 -050056 containers:
57 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000058 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Mike Elliott13fed112018-02-28 08:33:33 -050059 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60 command:
61 - /opt/appc/bin/startODL.sh
62 ports:
63 - containerPort: {{ .Values.service.internalPort }}
64 - containerPort: {{ .Values.service.externalPort2 }}
65 readinessProbe:
Taka Chocdc42662019-11-08 16:08:38 -050066 tcpSocket:
67 port: {{ .Values.service.internalPort }}
Mike Elliott13fed112018-02-28 08:33:33 -050068 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69 periodSeconds: {{ .Values.readiness.periodSeconds }}
70 env:
71 - name: MYSQL_ROOT_PASSWORD
72 valueFrom:
73 secretKeyRef:
74 name: {{ template "common.fullname" . }}
75 key: db-root-password
76 - name: SDNC_CONFIG_DIR
77 value: "{{ .Values.config.configDir }}"
78 - name: APPC_CONFIG_DIR
79 value: "{{ .Values.config.configDir }}"
80 - name: DMAAP_TOPIC_ENV
81 value: "{{ .Values.config.dmaapTopic }}"
Aaron Hay145818b2018-06-05 13:23:50 -040082 - name: ENABLE_AAF
83 value: "{{ .Values.config.enableAAF }}"
Mike Elliott13fed112018-02-28 08:33:33 -050084 - name: ENABLE_ODL_CLUSTER
85 value: "{{ .Values.config.enableClustering }}"
86 - name: APPC_REPLICAS
87 value: "{{ .Values.replicaCount }}"
88 volumeMounts:
89 - mountPath: /etc/localtime
90 name: localtime
91 readOnly: true
92 - mountPath: /opt/onap/appc/data/properties/dblib.properties
93 name: onap-appc-data-properties
94 subPath: dblib.properties
95 - mountPath: /opt/onap/appc/data/properties/svclogic.properties
96 name: onap-appc-data-properties
97 subPath: svclogic.properties
98 - mountPath: /opt/onap/appc/data/properties/appc.properties
99 name: onap-appc-data-properties
100 subPath: appc.properties
101 - mountPath: /opt/onap/appc/data/properties/aaiclient.properties
102 name: onap-appc-data-properties
103 subPath: aaiclient.properties
Aaron Hay3395df22018-10-30 18:31:41 -0400104 - mountPath: /opt/onap/appc/data/properties/cadi.properties
105 name: onap-appc-data-properties
106 subPath: cadi.properties
Aaron Hay145818b2018-06-05 13:23:50 -0400107 - mountPath: /opt/onap/appc/data/properties/aaa-app-config.xml
108 name: onap-appc-data-properties
109 subPath: aaa-app-config.xml
Taka Cho870b9432019-08-23 15:14:41 -0400110 - mountPath: /opt/onap/appc/data/properties/bath_config.csv
111 name: onap-appc-data-properties
112 subPath: bath_config.csv
Mike Elliott13fed112018-02-28 08:33:33 -0500113 - mountPath: /opt/onap/appc/svclogic/config/svclogic.properties
114 name: onap-appc-svclogic-config
115 subPath: svclogic.properties
116 - mountPath: /opt/onap/appc/svclogic/bin/showActiveGraphs.sh
117 name: onap-appc-svclogic-bin
118 subPath: showActiveGraphs.sh
119 - mountPath: /opt/onap/appc/bin/startODL.sh
120 name: onap-appc-bin
121 subPath: startODL.sh
122 - mountPath: /opt/onap/appc/bin/installAppcDb.sh
123 name: onap-appc-bin
124 subPath: installAppcDb.sh
Aaron Hay1d464b52018-05-25 14:58:32 -0400125 - mountPath: /opt/onap/appc/bin/health_check.sh
126 name: onap-appc-bin
127 subPath: health_check.sh
Aaron Hay84e2c342018-04-17 12:37:31 -0400128 - mountPath: /opt/onap/ccsdk/data/properties/dblib.properties
Mike Elliott13fed112018-02-28 08:33:33 -0500129 name: onap-sdnc-data-properties
130 subPath: dblib.properties
Aaron Hay84e2c342018-04-17 12:37:31 -0400131 - mountPath: /opt/onap/ccsdk/data/properties/svclogic.properties
Mike Elliott13fed112018-02-28 08:33:33 -0500132 name: onap-sdnc-data-properties
133 subPath: svclogic.properties
Aaron Hay84e2c342018-04-17 12:37:31 -0400134 - mountPath: /opt/onap/ccsdk/data/properties/aaiclient.properties
Mike Elliott13fed112018-02-28 08:33:33 -0500135 name: onap-sdnc-data-properties
136 subPath: aaiclient.properties
Aaron Hay84e2c342018-04-17 12:37:31 -0400137 - mountPath: /opt/onap/ccsdk/svclogic/config/svclogic.properties
Mike Elliott13fed112018-02-28 08:33:33 -0500138 name: onap-sdnc-svclogic-config
139 subPath: svclogic.properties
Aaron Hay84e2c342018-04-17 12:37:31 -0400140 - mountPath: /opt/onap/ccsdk/svclogic/bin/showActiveGraphs.sh
Mike Elliott13fed112018-02-28 08:33:33 -0500141 name: onap-sdnc-svclogic-bin
142 subPath: showActiveGraphs.sh
Aaron Hay84e2c342018-04-17 12:37:31 -0400143 - mountPath: /opt/onap/ccsdk/bin/installSdncDb.sh
Mike Elliott13fed112018-02-28 08:33:33 -0500144 name: onap-sdnc-bin
145 subPath: installSdncDb.sh
BorislavG3dad2f42018-04-16 10:19:45 +0000146 - mountPath: {{ .Values.persistence.mdsalPath }}
147 name: {{ include "common.fullname" . }}-data
Mike Elliott13fed112018-02-28 08:33:33 -0500148 - mountPath: /var/log/onap
149 name: logs
Taka Choe1e2e1c2019-09-17 13:42:28 -0400150 - mountPath: /opt/onap/appc/data/org.ops4j.pax.logging.cfg
Mike Elliott13fed112018-02-28 08:33:33 -0500151 name: log-config
152 subPath: org.ops4j.pax.logging.cfg
153 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000154{{ include "common.resources" . | indent 12 }}
GregSulek973bfad2018-09-19 06:48:37 -0400155 {{- if .Values.nodeSelector }}
Mike Elliott13fed112018-02-28 08:33:33 -0500156 nodeSelector:
157{{ toYaml .Values.nodeSelector | indent 10 }}
158 {{- end -}}
159 {{- if .Values.affinity }}
160 affinity:
161{{ toYaml .Values.affinity | indent 10 }}
162 {{- end }}
163
164 # side car containers
165 - name: filebeat-onap
166 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
167 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
168 volumeMounts:
169 - mountPath: /usr/share/filebeat/filebeat.yml
170 name: filebeat-conf
171 subPath: filebeat.yml
172 - mountPath: /var/log/onap
173 name: logs
174 - mountPath: /usr/share/filebeat/data
175 name: data-filebeat
176 volumes:
177 - name: localtime
178 hostPath:
179 path: /etc/localtime
180 - name: filebeat-conf
181 configMap:
182 name: {{ include "common.fullname" . }}-filebeat
183 - name: log-config
184 configMap:
185 name: {{ include "common.fullname" . }}-logging-cfg
186 - name: logs
187 emptyDir: {}
188 - name: data-filebeat
189 emptyDir: {}
190 - name: onap-appc-data-properties
191 configMap:
192 name: {{ include "common.fullname" . }}-onap-appc-data-properties
193 - name: onap-appc-svclogic-config
194 configMap:
195 name: {{ include "common.fullname" . }}-onap-appc-svclogic-config
196 - name: onap-appc-svclogic-bin
197 configMap:
198 name: {{ include "common.fullname" . }}-onap-appc-svclogic-bin
199 defaultMode: 0755
200 - name: onap-appc-bin
201 configMap:
202 name: {{ include "common.fullname" . }}-onap-appc-bin
203 defaultMode: 0755
204 - name: onap-sdnc-data-properties
205 configMap:
206 name: {{ include "common.fullname" . }}-onap-sdnc-data-properties
207 - name: onap-sdnc-svclogic-config
208 configMap:
209 name: {{ include "common.fullname" . }}-onap-sdnc-svclogic-config
210 - name: onap-sdnc-svclogic-bin
211 configMap:
212 name: {{ include "common.fullname" . }}-onap-sdnc-svclogic-bin
213 defaultMode: 0755
214 - name: onap-sdnc-bin
215 configMap:
216 name: {{ include "common.fullname" . }}-onap-sdnc-bin
217 defaultMode: 0755
BorislavG8b31f6d2018-05-02 14:06:08 +0000218{{ if not .Values.persistence.enabled }}
BorislavG3dad2f42018-04-16 10:19:45 +0000219 - name: {{ include "common.fullname" . }}-data
220 emptyDir: {}
BorislavG8b31f6d2018-05-02 14:06:08 +0000221{{ else }}
BorislavG3dad2f42018-04-16 10:19:45 +0000222 volumeClaimTemplates:
223 - metadata:
224 name: {{ include "common.fullname" . }}-data
225 labels:
226 name: {{ include "common.fullname" . }}
Sylvain Desbureaux5f46e6e2019-11-29 09:19:40 +0100227 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100228 release: "{{ include "common.release" . }}"
Sylvain Desbureaux5f46e6e2019-11-29 09:19:40 +0100229 heritage: "{{ .Release.Service }}"
BorislavG3dad2f42018-04-16 10:19:45 +0000230 spec:
Sylvain Desbureaux5f46e6e2019-11-29 09:19:40 +0100231 accessModes:
232 - {{ .Values.persistence.accessMode }}
233 storageClassName: {{ include "common.storageClass" . }}
BorislavG3dad2f42018-04-16 10:19:45 +0000234 resources:
235 requests:
236 storage: {{ .Values.persistence.size }}
BorislavG8b31f6d2018-05-02 14:06:08 +0000237{{ end }}