blob: 7d1ed63c96b944c318982bdbbecdbed6d2b552a4 [file] [log] [blame]
rohithrajneesh177701e2023-12-18 23:02:55 +00001# ============LICENSE_START===============================================
2# Copyright (C) 2023 Nordix Foundation. All rights reserved.
3# Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
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# ============LICENSE_END=================================================
Lathish65cb6092020-03-26 15:06:31 +000017
18#-------------------------------------------------------------------------
19# Global common setting
20#-------------------------------------------------------------------------
21
PatrikBuhrc5c107d2021-05-26 09:26:09 +020022
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +010023# Here you can enable inclusion or exclusion of each component. A not enabled component will not be installed.
PatrikBuhrc5c107d2021-05-26 09:26:09 +020024nonrtric:
25 installPms: true
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010026 installA1controller: true
27 installA1simulator: true
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020028 installControlpanel: true
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010029 installInformationservice: true
30 installRappcatalogueservice: true
aravind.est8a7e77f2023-01-09 14:48:22 +000031 installRappcatalogueenhancedservice: true
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020032 installNonrtricgateway: true
33 installKong: false
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010034 installDmaapadapterservice: true
35 installDmaapmediatorservice: true
36 installHelmmanager: true
elinuxhenrik89a42982022-07-01 11:19:43 +020037 installOrufhrecovery: true
38 installRansliceassurance: true
aravind.est0c128bc2023-07-18 13:48:12 +010039 installCapifcore: true
rohithrajneesh538db332023-08-09 14:48:30 +010040 installRanpm: true
aravind.estf36dc4a2023-11-14 13:17:48 +000041 installrAppmanager: true
aravind.est7a8f9742023-11-16 13:19:15 +000042 installDmeParticipant: true
aravind.est0c128bc2023-07-18 13:48:12 +010043
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020044 volume1:
45 # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning)
46 size: 2Gi
47 storageClassName: pms-storage
PatrikBuhr4c590d92021-12-09 14:16:01 +010048 hostPath: /var/nonrtric/pms-storage
RehanRaza2482dc92021-09-22 18:14:27 +020049 volume2:
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020050 # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning)
51 size: 2Gi
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010052 storageClassName: ics-storage
PatrikBuhr4c590d92021-12-09 14:16:01 +010053 hostPath: /var/nonrtric/ics-storage
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010054 volume3:
55 size: 1Gi
56 storageClassName: helmmanager-storage
Lathish65cb6092020-03-26 15:06:31 +000057common:
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020058 releasePrefix: r3-dev-nonrtric
59# Do not change the namespace
Lathish65cb6092020-03-26 15:06:31 +000060 namespace:
61 nonrtric: nonrtric
RehanRaza2482dc92021-09-22 18:14:27 +020062 ingressClassName: kong
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010063
64informationservice:
65 informationservice:
66 imagePullPolicy: Always
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020067 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +010068 registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
elinuxhenrik89a42982022-07-01 11:19:43 +020069 name: 'nonrtric-plt-informationcoordinatorservice'
rohithrajneesh177701e2023-12-18 23:02:55 +000070 tag: 1.6.0
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020071 service:
72 allowHttp: true
73 httpName: http
74 internalPort1: 9082
75 targetPort1: 8083
76 httpsName: https
77 internalPort2: 9083
78 targetPort2: 8434
79 liveness:
80 initialDelaySeconds: 20
81 periodSeconds: 10
82 readiness:
83 initialDelaySeconds: 20
84 periodSeconds: 10
85 persistence:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010086 # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed size should be the same.
87 # The alternative use a dynamic volume provisioner in the cluster. Storage class can then be for instance 'standard' or 'gluster-fs' (depeneds on which classes that are available)
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020088 size: 2Gi
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010089 storageClassName: ics-storage
90 ingress:
91 enabled: true
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020092
93# Need to check the external port Availability
94policymanagementservice:
95 policymanagementservice:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +010096 imagePullPolicy: Always
PatrikBuhr8a1a9a42021-06-04 10:57:06 +020097 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +010098 registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
elinuxhenrik89a42982022-07-01 11:19:43 +020099 name: nonrtric-plt-a1policymanagementservice
rohithrajneesh177701e2023-12-18 23:02:55 +0000100 tag: 2.7.0
PatrikBuhr8a1a9a42021-06-04 10:57:06 +0200101 service:
102 allowHttp: true
103 httpName: http
104 internalPort1: 9080
105 targetPort1: 8081
106 httpsName: https
107 internalPort2: 9081
108 targetPort2: 8433
109 liveness:
110 initialDelaySeconds: 20
111 periodSeconds: 10
112 readiness:
113 initialDelaySeconds: 20
114 periodSeconds: 10
115 persistence:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100116 # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed size should be the same.
117 # The alternative use a dynamic volume provisioner in the cluster. Storage class can then be for instance 'standard' or 'gluster-fs' (depeneds on which classes that are available)
PatrikBuhr8a1a9a42021-06-04 10:57:06 +0200118 size: 2Gi
119 storageClassName: pms-storage
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100120 ingress:
121 enabled: true
Lathish7e090012020-04-01 17:38:20 +0100122
elinuxhenrik89a42982022-07-01 11:19:43 +0200123# A1 Controller may take few more minutes to start. Increase the initialDelaySeconds in liveness to avoid container restart.
Lathish7e090012020-04-01 17:38:20 +0100124a1controller:
Lathishe4d2f4b2020-04-20 17:21:51 +0100125 a1controller:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100126 imagePullPolicy: Always
Lathishe4d2f4b2020-04-20 17:21:51 +0100127 image:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100128 registry: 'nexus3.onap.org:10002/onap'
129 name: sdnc-image
130 tag: 2.1.6
Lathishe4d2f4b2020-04-20 17:21:51 +0100131 replicaCount: 1
132 service:
RehanRazad052a252020-05-27 14:56:30 +0200133 allowHttp: true
134 httpName: http
135 internalPort1: 8282
136 targetPort1: 8181
137 httpsName: https
138 internalPort2: 8383
139 targetPort2: 8443
140 liveness:
Lathish7a934702020-06-04 13:14:41 +0100141 initialDelaySeconds: 300
RehanRazad052a252020-05-27 14:56:30 +0200142 periodSeconds: 10
143 readiness:
144 initialDelaySeconds: 60
145 periodSeconds: 10
Lathish65cb6092020-03-26 15:06:31 +0000146
147a1simulator:
Lathishe4d2f4b2020-04-20 17:21:51 +0100148 a1simulator:
149 name: a1-sim
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100150 imagePullPolicy: Always
Lathishe4d2f4b2020-04-20 17:21:51 +0100151 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +0100152 registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
Lathishe4d2f4b2020-04-20 17:21:51 +0100153 name: a1-simulator
rohithrajneesh177701e2023-12-18 23:02:55 +0000154 tag: 2.6.1
Lathishe4d2f4b2020-04-20 17:21:51 +0100155 service:
RehanRaza036da7f2020-06-01 17:11:37 +0200156 allowHttp: true
RehanRazae5a6ed02020-05-29 11:30:58 +0200157 httpName: http
158 internalPort1: 8085
159 targetPort1: 8085
160 httpsName: https
161 internalPort2: 8185
162 targetPort2: 8185
163 liveness:
164 initialDelaySeconds: 20
165 periodSeconds: 10
166 readiness:
167 initialDelaySeconds: 20
168 periodSeconds: 10
Lathishe4d2f4b2020-04-20 17:21:51 +0100169 oscVersion:
170 name: a1-sim-osc
171 replicaCount: 2
172 stdVersion:
173 name: a1-sim-std
174 replicaCount: 2
ecaiyanlinuxee640dc2020-12-22 09:25:03 +0100175 stdVersion2:
176 name: a1-sim-std2
177 replicaCount: 2
Lathish7e090012020-04-01 17:38:20 +0100178
179controlpanel:
Lathishe4d2f4b2020-04-20 17:21:51 +0100180 controlpanel:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100181 imagePullPolicy: Always
Lathishe4d2f4b2020-04-20 17:21:51 +0100182 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +0100183 registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
Lathishe4d2f4b2020-04-20 17:21:51 +0100184 name: nonrtric-controlpanel
rohithrajneeshf5876052023-06-21 12:45:25 +0100185 tag: 2.5.0
Lathishe4d2f4b2020-04-20 17:21:51 +0100186 replicaCount: 1
187 service:
Lathish32a43aa2020-05-20 23:18:18 +0100188 allowHttp: true
189 httpName: http
190 internalPort1: 8080
191 targetPort1: 8080
192 externalPort1: 30091
193 httpsName: https
194 internalPort2: 8081
195 targetPort2: 8082
196 externalPort2: 30092
197 liveness:
198 initialDelaySeconds: 20
199 periodSeconds: 10
200 readiness:
201 initialDelaySeconds: 20
202 periodSeconds: 10
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100203 ingress:
204 enabled: false
Lathish65cb6092020-03-26 15:06:31 +0000205
elinuxhenrikf38d71d2020-12-01 13:08:14 +0100206rappcatalogueservice:
207 rappcatalogueservice:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100208 imagePullPolicy: Always
elinuxhenrikf38d71d2020-12-01 13:08:14 +0100209 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +0100210 registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
elinuxhenrik89a42982022-07-01 11:19:43 +0200211 name: nonrtric-plt-rappcatalogue
rohithrajneeshf5876052023-06-21 12:45:25 +0100212 tag: 1.2.0
elinuxhenrikf38d71d2020-12-01 13:08:14 +0100213 service:
214 allowHttp: true
215 httpName: http
216 internalPort1: 9085
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100217 targetPort1: 8680
elinuxhenrikf38d71d2020-12-01 13:08:14 +0100218 httpsName: https
219 internalPort2: 9086
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100220 targetPort2: 8633
elinuxhenrikf38d71d2020-12-01 13:08:14 +0100221 liveness:
222 initialDelaySeconds: 20
223 periodSeconds: 10
224 readiness:
225 initialDelaySeconds: 20
ecaiyanlinuxee640dc2020-12-22 09:25:03 +0100226 periodSeconds: 10
RehanRazae6914732021-02-04 13:17:31 +0100227
aravind.est1932aca2022-12-16 14:59:58 +0000228rappcatalogueenhancedservice:
229 rappcatalogueenhancedservice:
230 imagePullPolicy: Always
231 image:
232 registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
233 name: nonrtric-plt-rappcatalogue-enhanced
rohithrajneesh177701e2023-12-18 23:02:55 +0000234 tag: 1.1.0
aravind.est1932aca2022-12-16 14:59:58 +0000235 service:
236 allowHttp: true
237 httpName: http
238 internalPort1: 9696
239 targetPort1: 9696
240 liveness:
241 initialDelaySeconds: 20
242 periodSeconds: 10
243 readiness:
244 initialDelaySeconds: 20
245 periodSeconds: 10
246
RehanRazae6914732021-02-04 13:17:31 +0100247nonrtricgateway:
248 nonrtricgateway:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100249 imagePullPolicy: Always
RehanRazae6914732021-02-04 13:17:31 +0100250 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +0100251 registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
RehanRazae6914732021-02-04 13:17:31 +0100252 name: nonrtric-gateway
rohithrajneeshf5876052023-06-21 12:45:25 +0100253 tag: 1.2.0
RehanRazae6914732021-02-04 13:17:31 +0100254 service:
255 httpName: http
256 internalPort1: 9090
257 targetPort1: 9090
258 externalPort1: 30093
259 liveness:
260 initialDelaySeconds: 20
261 periodSeconds: 10
262 readiness:
263 initialDelaySeconds: 20
PatrikBuhr866a34f2021-04-12 17:02:21 +0200264 periodSeconds: 10
RehanRaza2482dc92021-09-22 18:14:27 +0200265
266dmaapadapterservice:
267 dmaapadapterservice:
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100268 imagePullPolicy: Always
RehanRaza2482dc92021-09-22 18:14:27 +0200269 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +0100270 registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
elinuxhenrik89a42982022-07-01 11:19:43 +0200271 name: 'nonrtric-plt-dmaapadapter'
rohithrajneeshf5876052023-06-21 12:45:25 +0100272 tag: 1.3.0
RehanRaza2482dc92021-09-22 18:14:27 +0200273 service:
274 allowHttp: true
275 httpName: http
276 internalPort1: 9087
277 targetPort1: 8084
278 httpsName: https
279 internalPort2: 9088
280 targetPort2: 8435
281 liveness:
282 initialDelaySeconds: 20
283 periodSeconds: 10
284 readiness:
285 initialDelaySeconds: 20
286 periodSeconds: 10
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100287
288dmaapmediatorservice:
289 dmaapmediatorservice:
290 imagePullPolicy: IfNotPresent
291 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +0100292 registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
elinuxhenrik89a42982022-07-01 11:19:43 +0200293 name: "nonrtric-plt-dmaapmediatorproducer"
rohithrajneeshf5876052023-06-21 12:45:25 +0100294 tag: 1.2.0
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100295 service:
296 allowHttp: true
297 httpName: http
298 internalPort1: 8085
299 targetPort1: 8085
300 httpsName: https
301 internalPort2: 8185
302 targetPort2: 8185
303 liveness:
304 initialDelaySeconds: 20
305 periodSeconds: 10
306 readiness:
307 initialDelaySeconds: 20
308 periodSeconds: 10
309
310helmmanager:
311 helmmanager:
312 clusterRoleName: cluster-admin
313 imagePullPolicy: Always
314 image:
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +0100315 registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
elinuxhenrik89a42982022-07-01 11:19:43 +0200316 name: "nonrtric-plt-helmmanager"
rohithrajneeshf5876052023-06-21 12:45:25 +0100317 tag: 1.3.0
BjornMagnussonXA326fd8c2021-12-10 10:13:03 +0100318 service:
319 httpName: http
320 internalPort1: 8112
321 targetPort1: 8083
322 liveness:
323 initialDelaySeconds: 20
324 periodSeconds: 10
325 readiness:
326 initialDelaySeconds: 20
327 periodSeconds: 10
328 persistence:
329 # Either refer to a volume created under the nonrtric by storageClassName. Then the claimed size should be the same.
330 # The alternative use a dynamic volume provisioner in the cluster. Storage class can then be for instance 'standard' or 'gluster-fs' (depeneds on which classes that are available)
331 size: 1Gi
BjornMagnussonXA9b63bfe2021-12-16 21:30:28 +0100332 storageClassName: helmmanager-storage
ecaiyanlinuxf5c959c2021-12-15 15:06:42 +0100333
elinuxhenrik89a42982022-07-01 11:19:43 +0200334ransliceassurance:
335 ransliceassurance:
ecaiyanlinuxf5c959c2021-12-15 15:06:42 +0100336 imagePullPolicy: IfNotPresent
337 image:
338 registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
elinuxhenrik89a42982022-07-01 11:19:43 +0200339 name: "nonrtric-rapp-ransliceassurance"
rohithrajneeshf5876052023-06-21 12:45:25 +0100340 tag: 1.3.0
ecaiyanlinuxf5c959c2021-12-15 15:06:42 +0100341 env:
342 mr_host: "http://onap-dmaap"
343 mr_port: "3904"
344 sdnr_address: "http://sdnr:8181"
345 sdnr_user: "admin"
346 sdnr_password: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
347 log_level: "Info"
348 polltime: "10"
aravind.estd1457dd2022-12-16 17:21:32 +0000349 node_id: "o-du-1122"
ecaiyanlinuxf5c959c2021-12-15 15:06:42 +0100350
elinuxhenrik89a42982022-07-01 11:19:43 +0200351orufhrecovery:
352 orufhrecovery:
ecaiyanlinuxf5c959c2021-12-15 15:06:42 +0100353 imagePullPolicy: IfNotPresent
354 image:
355 registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
ktimoneyf67e67b2022-06-08 14:39:57 +0100356 name: "nonrtric-rapp-orufhrecovery-consumer"
elinuxhenrik89a42982022-07-01 11:19:43 +0200357 tag: 1.1.0
ecaiyanlinuxf5c959c2021-12-15 15:06:42 +0100358 env:
359 consumer_host: "http://mrproducer"
360 consumer_port: "8095"
ecaiyanlinuxbaeef2c2022-02-14 22:36:54 +0100361 consumer_cert_path: "security/consumer.crt"
362 consumer_key_path: "security/consumer.key"
ecaiyanlinuxf5c959c2021-12-15 15:06:42 +0100363 info_coord_addr: "http://ics:8083"
364 sdnr_address: "http://sdnr:8282"
365 sdnr_user: "admin"
366 sdnr_password: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
367 oru_to_odu_map_file: "o-ru-to-o-du-map.csv"
368 log_level: "Info"
elinuxhenrik89a42982022-07-01 11:19:43 +0200369
aravind.est41f01082022-12-16 13:12:34 +0000370
371capifcore:
372 capifcore:
373 imagePullPolicy: IfNotPresent
374 image:
375 registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
376 name: nonrtric-plt-capifcore
rohithrajneesh177701e2023-12-18 23:02:55 +0000377 tag: 1.2.0
aravind.est41f01082022-12-16 13:12:34 +0000378 env:
379 chart_museum_url: "http://chartmuseum:8080"
aravind.estf36dc4a2023-11-14 13:17:48 +0000380 repo_name: "capifcore"
381
382rappmanager:
383 rappmanager:
384 imagePullPolicy: IfNotPresent
385 image:
rohithrajneesh177701e2023-12-18 23:02:55 +0000386 registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
aravind.estf36dc4a2023-11-14 13:17:48 +0000387 name: nonrtric-plt-rappmanager
rohithrajneesh177701e2023-12-18 23:02:55 +0000388 tag: 0.0.1
aravind.estf36dc4a2023-11-14 13:17:48 +0000389 service:
390 httpName: http
391 internalPort1: 8080
392 targetPort1: 8080
393 liveness:
394 initialDelaySeconds: 20
395 periodSeconds: 10
396 readiness:
397 initialDelaySeconds: 20
398 periodSeconds: 10
399 ingress:
400 enabled: true
401 acm:
402 username: cnVudGltZVVzZXI=
403 password: emIhWHp0RzM0
aravind.est7a8f9742023-11-16 13:19:15 +0000404
405dmeparticipant:
406 dmeparticipant:
407 imagePullPolicy: IfNotPresent
408 image:
rohithrajneesh177701e2023-12-18 23:02:55 +0000409 registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
aravind.est7a8f9742023-11-16 13:19:15 +0000410 name: nonrtric-plt-participant-impl-dme
rohithrajneesh177701e2023-12-18 23:02:55 +0000411 tag: 0.0.1
aravind.est7a8f9742023-11-16 13:19:15 +0000412 service:
413 httpName: http
414 internalPort1: 8080
415 targetPort1: 8080
416 liveness:
417 initialDelaySeconds: 20
418 periodSeconds: 10
419 readiness:
420 initialDelaySeconds: 20
421 periodSeconds: 10
422 ingress:
423 enabled: false
424 security:
425 username: cGFydGljaXBhbnRVc2VyCg==
426 password: emIhWHp0RzM0