blob: 6104705d1504680ba4efc13e68d491e3687834b1 [file] [log] [blame]
badhri854c028b32021-11-03 18:24:05 -05001# Copyright 2020-present Open Networking Foundation
2#
Ajay Lotan Thakur03189d22022-02-10 14:06:03 -06003# SPDX-License-Identifier: Apache-2.0
badhri854c028b32021-11-03 18:24:05 -05004
5images:
Ajay Lotan Thakur71115fe2022-03-03 22:26:08 -07006 repository: "" #default docker hub
badhri854c028b32021-11-03 18:24:05 -05007 tags:
Ajay Lotan Thakur71115fe2022-03-03 22:26:08 -07008 init: omecproject/pod-init:1.0.0
Ajay Lotan Thakure7d9a252022-07-07 16:02:07 -06009 amf: omecproject/5gc-amf:master-c250161
Ajay Lotan Thakur63e86d62022-05-27 14:36:29 -060010 nrf: omecproject/5gc-nrf:master-a431afa
11 smf: omecproject/5gc-smf:master-b73f587
12 ausf: omecproject/5gc-ausf:master-1bfd38d
13 nssf: omecproject/5gc-nssf:master-93cd53b
14 pcf: omecproject/5gc-pcf:master-0e90976
15 udr: omecproject/5gc-udr:master-c9c04fe
16 udm: omecproject/5gc-udm:master-5992f3f
Ajay Lotan Thakure7d9a252022-07-07 16:02:07 -060017 webui: omecproject/5gc-webui:master-fec9bfc
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -060018 sctplb: omecproject/sctplb:master-538dad6
19 metricfunc: metricfunc:0.0.1-dev-local0
badhri854c028b32021-11-03 18:24:05 -050020 pullPolicy: IfNotPresent
badhri854c028b32021-11-03 18:24:05 -050021
22resources:
23 enabled: false
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -060024 sctplb:
25 requests:
26 cpu: 2
27 memory: 1Gi
28 limits:
29 cpu: 2
30 memory: 1Gi
badhri854c028b32021-11-03 18:24:05 -050031 amf:
32 requests:
Ajay Lotan Thakur6ed2e122022-03-04 11:10:31 -070033 cpu: 2
badhri854c028b32021-11-03 18:24:05 -050034 memory: 1Gi
35 limits:
36 cpu: 2
37 memory: 1Gi
38 nrf:
39 requests:
40 cpu: 2
41 memory: 1Gi
42 limits:
43 cpu: 2
44 memory: 1Gi
45 smf:
46 requests:
47 cpu: 2
48 memory: 1Gi
49 limits:
50 cpu: 2
51 memory: 1Gi
52 ausf:
53 requests:
54 cpu: 2
55 memory: 1Gi
56 limits:
57 cpu: 2
58 memory: 1Gi
59 nssf:
60 requests:
61 cpu: 2
62 memory: 1Gi
63 limits:
64 cpu: 2
65 memory: 1Gi
66 pcf:
67 requests:
68 cpu: 2
69 memory: 1Gi
70 limits:
71 cpu: 2
72 memory: 1Gi
73 udr:
74 requests:
75 cpu: 2
76 memory: 1Gi
77 limits:
78 cpu: 2
79 memory: 1Gi
80 udm:
81 requests:
82 cpu: 2
83 memory: 1Gi
84 limits:
85 cpu: 2
86 memory: 1Gi
87 webui:
88 requests:
89 cpu: 1
90 memory: 1Gi
91 limits:
92 cpu: 1
93 memory: 1Gi
94
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -060095 metricfunc:
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -060096 requests:
97 cpu: 1
98 memory: 1Gi
99 limits:
100 cpu: 1
101 memory: 1Gi
102
103kafka:
104 deploy: false
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -0600105 nfKafka:
106 urls:
107 - "sd-core-kafka-headless:9092"
108 topic: "sdcore-nf-data-source"
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -0600109
badhri854c028b32021-11-03 18:24:05 -0500110mongodb:
111 deploy: true
112 fullnameOverride: mongodb
113 persistence:
114 enabled: false
115 auth:
116 enabled: false
117 serviceAccount:
118 create: false
119 #clusterDomain: cluster.local
120 #architecture: replicaset
121 #replicaCount: 3
122
123config:
124 managedByConfigPod: # config comes from helm by default, if enabled true, then discard
125 enabled: false # helm chart config and use the config from config Pod
126 syncUrl: "" # Get the config from adapater in case control plane is down
127 useExistingConfigMap: false
badhri859b2ce392022-01-18 12:45:40 -0600128 imagePath: /free5gc
badhri854c028b32021-11-03 18:24:05 -0500129 coreDump:
130 enabled: false
131 path: /tmp/coredump
132 mongodb:
133 name: free5gc
134 url: mongodb://mongodb
135 grpc:
136 golog_verbosity: "99"
137 severity: "info"
138 trace: "all"
139 verbosity: "debug"
140 logger:
141 # network function
142 AMF:
143 debugLevel: info
144 ReportCaller: false
145 SMF:
146 debugLevel: info
147 ReportCaller: false
148 UDR:
149 debugLevel: info
150 ReportCaller: false
151 UDM:
152 debugLevel: info
153 ReportCaller: false
154 NRF:
155 debugLevel: info
156 ReportCaller: false
157 PCF:
158 debugLevel: info
159 ReportCaller: false
160 AUSF:
161 debugLevel: info
162 ReportCaller: false
163 N3IWF:
164 debugLevel: info
165 ReportCaller: false
166 # library
167 NAS:
168 debugLevel: info
169 ReportCaller: false
170 FSM:
171 debugLevel: info
172 ReportCaller: false
173 NGAP:
174 debugLevel: info
175 ReportCaller: false
176 NamfComm:
177 debugLevel: info
178 ReportCaller: false
179 NamfEventExposure:
180 debugLevel: info
181 ReportCaller: false
182 NsmfPDUSession:
183 debugLevel: info
184 ReportCaller: false
185 NudrDataRepository:
186 debugLevel: info
187 ReportCaller: false
188 OpenApi:
189 debugLevel: info
190 ReportCaller: false
191 Aper:
192 debugLevel: info
193 ReportCaller: false
194 CommonConsumerTest:
195 debugLevel: info
196 ReportCaller: false
197 PFCP:
198 debugLevel: info
199 ReportCaller: false
200 MongoDBLibrary:
201 debugLevel: info
202 ReportCaller: false
203 PathUtil:
204 debugLevel: info
205 ReportCaller: false
206 # webui
207 WEBUI:
208 debugLevel: info
209 ReportCaller: false
210 webui:
211 deploy: true
212 #podAnnotations:
213 serviceType: ClusterIP
214 urlport:
215 port: 5000
216 # Provide nodePort when serviceType is NodePort
217 #nodePort: 35000
218 grpc:
219 port: 9876
220 ingress:
221 enabled: false
222 hostname: free5gc.local
223 path: /
224 pathType: Prefix
225 # extraHosts:
226 # - host: free5gc.local
227 # path: /
228 cfgFiles:
229 # https://github.com/free5gc/free5gc/blob/main/config/webuicfg.yaml
230 webuicfg.conf:
231 info:
232 version: 1.0.0
233 description: WebUI initial local configuration
Ajay Lotan Thakur58371c42022-03-10 08:12:41 -0700234 configuration:
235 spec-compliant-sdf: false
badhri854c028b32021-11-03 18:24:05 -0500236 udm:
237 deploy: true
238 #podAnnotations:
239 serviceType: ClusterIP
240 sbi:
241 port: 29503
242 # Provide nodePort when serviceType is NodePort
243 #nodePort: 30074
244 cfgFiles:
245 # https://github.com/free5gc/free5gc/blob/main/config/udmcfg.yaml
246 udmcfg.conf:
247 info:
248 version: 1.0.0
249 description: UDM initial local configuration
250 configuration:
251 nrfUri: http://nrf:29510
252 plmnList:
253 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530254 mcc: "208"
255 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500256 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530257 mcc: "222"
258 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500259 serviceNameList:
260 - nudm-sdm
261 - nudm-uecm
262 - nudm-ueau
263 - nudm-ee
264 - nudm-pp
265 sbi:
266 scheme: http
267 bindingIPv4: "0.0.0.0"
268 registerIPv4: udm
269 tls:
270 log: free5gc/udmsslkey.log
271 pem: free5gc/support/TLS/udm.pem
272 key: free5gc/support/TLS/udm.key
273 keys:
274 udmProfileAHNPublicKey: 5a8d38864820197c3394b92613b20b91633cbd897119273bf8e4a6f4eec0a650
275 udmProfileAHNPrivateKey: c53c22208b61860b06c62e5406a7b330c2b577aa5558981510d128247d38bd1d
276 udmProfileBHNPublicKey: 0472DA71976234CE833A6907425867B82E074D44EF907DFB4B3E21C1C2256EBCD15A7DED52FCBB097A4ED250E036C7B9C8C7004C4EEDC4F068CD7BF8D3F900E3B4
277 udmProfileBHNPrivateKey: F1AB1074477EBCC7F554EA1C5FC368B1616730155E0041AC447D6301975FECDA
278 udr:
279 deploy: true
280 #podAnnotations:
281 serviceType: ClusterIP
282 sbi:
283 port: 29504
284 # Provide nodePort when serviceType is NodePort
285 #nodePort: 30074
286 cfgFiles:
287 # https://github.com/free5gc/free5gc/blob/main/config/udrcfg.yaml
288 udrcfg.conf:
289 info:
290 version: 1.0.0
291 description: UDR initial local configuration
292 configuration:
293 nrfUri: http://nrf:29510
294 plmnSupportList:
295 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530296 mcc: "208"
297 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500298 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530299 mcc: "333"
300 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500301 sbi:
302 scheme: http
303 bindingIPv4: "0.0.0.0"
304 registerIPv4: udr
305 pcf:
306 deploy: true
307 #podAnnotations:
308 serviceType: ClusterIP
309 sbi:
310 port: 29507
311 # Provide nodePort when serviceType is NodePort
312 #nodePort: 30077
313 cfgFiles:
314 # https://github.com/free5gc/free5gc/blob/main/config/pcfcfg.yaml
315 pcfcfg.conf:
316 info:
317 version: 1.0.0
318 description: PCF initial local configuration
319 configuration:
320 pcfName: PCF
321 nrfUri: http://nrf:29510
322 sbi:
323 scheme: http
324 bindingIPv4: "0.0.0.0"
325 registerIPv4: pcf
326 defaultBdtRefId: BdtPolicyId-
327 plmnList:
328 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530329 mcc: "208"
330 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500331 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530332 mcc: "333"
333 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500334 serviceList:
335 - serviceName: npcf-am-policy-control
336 - serviceName: npcf-smpolicycontrol
337 suppFeat: 3fff
338 - serviceName: npcf-bdtpolicycontrol
339 - serviceName: npcf-policyauthorization
340 suppFeat: 3
341 - serviceName: npcf-eventexposure
342 - serviceName: npcf-ue-policy-control
343 nssf:
344 deploy: true
345 #podAnnotations:
346 serviceType: ClusterIP
347 sbi:
348 port: 29531
349 # Provide nodePort when serviceType is NodePort
350 #nodePort: 30081
351 cfgFiles:
352 # https://github.com/free5gc/free5gc/blob/main/config/nssfcfg.yaml
353 nssfcfg.conf:
354 info:
355 version: 1.0.0
356 description: NSSF initial local configuration
357 configuration:
358 nssfName: NSSF
359 nrfUri: http://nrf:29510
360 sbi:
361 scheme: http
362 bindingIPv4: "0.0.0.0"
363 registerIPv4: nssf
364 serviceNameList:
365 - nnssf-nsselection
366 - nnssf-nssaiavailability
367 supportedPlmnList:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530368 - mcc: "208"
369 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500370 supportedNssaiInPlmnList:
371 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530372 mcc: "208"
373 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500374 supportedSnssaiList:
375 - sst: 1
376 sd: "010203"
377 nsiList:
378 - snssai:
379 sst: 1
380 sd: "010203"
381 nsiInformationList:
382 - nrfId: http://nrf:29510/nnrf-nfm/v1/nf-instances
383 nsiId: 22
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -0600384 sctplb:
385 deploy: false
386 podAnnotations:
387 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
388 serviceType: ClusterIP
389 sctp_grpc:
390 port: 9000
391 #nodePort: 30088
392 ngapp:
393 #externalIp:
394 port: 38412
395 #nodePort: 30071
396 cfgFiles:
397 # https://github.com/free5gc/free5gc/blob/main/config/amfcfg.yaml
398 sctplb.yaml:
399 info:
400 version: 1.0.0
401 description: SCTPLB initial local configuration
402 logger:
403 sctpLogs: info
404 dispatcherLogs: info
405 clientdiscLogs: info
406 configuration:
407 serviceNames:
408 - "amf-headless"
409 ngapIpList:
410 - "0.0.0.0"
badhri854c028b32021-11-03 18:24:05 -0500411 amf:
412 deploy: true
413 podAnnotations:
414 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
415 serviceType: ClusterIP
416 prometheus:
417 port: 9089
418 # Provide nodePort when serviceType is NodePort
419 #nodePort: 30084
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -0600420 sctp_grpc:
421 port: 9000
422 #nodePort: 30088
badhri854c028b32021-11-03 18:24:05 -0500423 sbi:
424 port: 29518
425 #nodePort: 30088
426 ngapp:
427 #externalIp:
428 port: 38412
429 #nodePort: 30071
430 cfgFiles:
431 # https://github.com/free5gc/free5gc/blob/main/config/amfcfg.yaml
432 amfcfg.conf:
433 info:
434 version: 1.0.0
435 description: AMF initial local configuration
436 configuration:
437 ngapIpList:
438 - "0.0.0.0"
439 amfName: AMF
440 nrfUri: http://nrf:29510
441 sbi:
442 scheme: http
443 bindingIPv4: "0.0.0.0"
444 registerIPv4: amf
445 serviceNameList:
446 - namf-comm
447 - namf-evts
448 - namf-mt
449 - namf-loc
450 - namf-oam
451 servedGuamiList:
452 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530453 mcc: "208"
454 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500455 amfId: cafe00
456 supportTaiList:
457 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530458 mcc: "208"
459 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500460 tac: 1
461 plmnSupportList:
462 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530463 mcc: "208"
464 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500465 snssaiList:
466 - sst: 1
467 sd: "010203"
468 supportDnnList:
469 - internet
470 security:
471 integrityOrder:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530472 - NIA1
badhri854c028b32021-11-03 18:24:05 -0500473 - NIA2
474 cipheringOrder:
475 - NEA0
476 networkName:
477 full: Aether5G
478 short: Aether
479 networkFeatureSupport5GS: # 5gs Network Feature Support IE, refer to TS 24.501
480 enable: true # append this IE in Registration accept or not
481 imsVoPS: 0 # IMS voice over PS session indicator (uinteger, range: 0~1)
482 emc: 0 # Emergency service support indicator for 3GPP access (uinteger, range: 0~3)
483 emf: 0 # Emergency service fallback indicator for 3GPP access (uinteger, range: 0~3)
484 iwkN26: 0 # Interworking without N26 interface indicator (uinteger, range: 0~1)
485 mpsi: 0 # MPS indicator (uinteger, range: 0~1)
486 emcN3: 0 # Emergency service support indicator for Non-3GPP access (uinteger, range: 0~1)
487 mcsi: 0 # MCS indicator (uinteger, range: 0~1)
488 t3502Value: 720 # timer value (seconds) at UE side
489 t3512Value: 3600 # timer value (seconds) at UE side
490 non3gppDeregistrationTimerValue: 3240 # timer value (seconds) at UE side
491 # retransmission timer for paging message
492 t3513:
493 enable: true # true or false
494 expireTime: 6s # default is 6 seconds
495 maxRetryTimes: 4 # the max number of retransmission
496 # retransmission timer for NAS Deregistration Request message
497 t3522:
498 enable: true # true or false
499 expireTime: 6s # default is 6 seconds
500 maxRetryTimes: 4 # the max number of retransmission
501 # retransmission timer for NAS Registration Accept message
502 t3550:
503 enable: true # true or false
504 expireTime: 6s # default is 6 seconds
505 maxRetryTimes: 4 # the max number of retransmission
506 # retransmission timer for NAS Authentication Request/Security Mode Command message
507 t3560:
508 enable: true # true or false
509 expireTime: 6s # default is 6 seconds
510 maxRetryTimes: 4 # the max number of retransmission
511 # retransmission timer for NAS Notification message
512 t3565:
513 enable: true # true or false
514 expireTime: 6s # default is 6 seconds
515 maxRetryTimes: 4 # the max number of retransmission
516 nrf:
517 deploy: true
518 #podAnnotations:
519 serviceType: ClusterIP
520 sbi:
521 port: 29510
522 # Provide nodePort when serviceType is NodePort
523 #nodePort: 30070
524 cfgFiles:
525 # https://github.com/free5gc/free5gc/blob/main/config/nrfcfg.yaml
526 nrfcfg.conf:
527 info:
528 version: 1.0.0
529 description: NRF initial local configuration
530 configuration:
531 sbi:
532 scheme: http
533 bindingIPv4: "0.0.0.0"
534 registerIPv4: nrf
535 DefaultPlmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530536 mcc: "208"
537 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500538 serviceNameList:
539 - nnrf-nfm
540 - nnrf-disc
541 smf:
542 deploy: true
543 podAnnotations:
544 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
545 serviceType: ClusterIP
546 n4:
547 port: 8805
548 # Provide nodePort when serviceType is NodePort
549 #nodePort: 30021
550 prometheus:
551 port: 9089
552 #nodePort: 30084
553 sbi:
554 port: 29502
555 #nodePort: 30080
556 cfgFiles:
557 uerouting.conf:
558 info:
559 version: 1.0.0
560 description: Routing information for UE
561 # https://github.com/free5gc/free5gc/blob/main/config/smfcfg.yaml
562 smfcfg.conf:
563 info:
564 version: 1.0.0
565 description: SMF initial local configuration
566 configuration:
567 pfcp:
568 addr: "POD_IP"
569 smfName: SMF
570 nrfUri: http://nrf:29510
571 sbi:
572 scheme: http
573 bindingIPv4: "0.0.0.0"
574 registerIPv4: smf
575 tls:
576 key: gofree5gc/support/TLS/smf.key
577 pem: gofree5gc/support/TLS/smf.pem
578 serviceNameList:
579 - nsmf-pdusession
580 - nsmf-event-exposure
581 snssaiInfos:
582 - dnnInfos:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530583 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500584 dns: # the IP address of DNS
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530585 ipv4: "8.8.8.8"
586 ipv6: "2001:4860:4860::8888"
badhri854c028b32021-11-03 18:24:05 -0500587 ueSubnet: 172.250.0.0/16 # should be CIDR type
588 sNssai:
589 sd: "010203"
590 sst: 1
591 userplane_information:
592 up_nodes:
593 gNB1:
594 type: AN
595 UPF:
596 type: UPF
597 node_id: upf
598 sNssaiUpfInfos: # S-NSSAI information list for this UPF
599 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
600 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
601 sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
602 dnnUpfInfoList: # DNN information list for this S-NSSAI
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530603 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500604 plmnId:
605 mcc: "208"
606 mnc: "93"
607 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
608 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
609 sd: "112233" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
610 dnnUpfInfoList: # DNN information list for this S-NSSAI
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530611 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500612 plmnId:
613 mcc: "208"
614 mnc: "93"
615 interfaces: # Interface list for this UPF
616 - interfaceType: N3 # the type of the interface (N3 or N9)
617 endpoints: # the IP address of this N3/N9 interface on this UPF
618 - upf
619 networkInstance: internet # Data Network Name (DNN)
620
621 links:
622 - A: gNB1
623 B: UPF
624 ausf:
625 deploy: true
626 #podAnnotations:
627 serviceType: ClusterIP
628 sbi:
629 port: 29509
630 # Provide nodePort when serviceType is NodePort
631 #nodePort: 30082
632 cfgFiles:
633 # https://github.com/free5gc/free5gc/blob/main/config/ausfcfg.yaml
634 ausfcfg.conf:
635 info:
636 version: 1.0.0
637 description: AUSF initial local configuration
638 configuration:
639 nrfUri: http://nrf:29510
640 sbi:
641 scheme: http
642 bindingIPv4: "0.0.0.0"
643 registerIPv4: ausf
644 serviceNameList:
645 - nausf-auth
646 plmnSupportList:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530647 - mcc: "208"
648 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500649 groupId: ausfGroup001
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -0600650 metricfunc:
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -0600651 deploy: false
652 serviceType: ClusterIP
653 prometheus:
654 port: 9089
655 cfgFiles:
656 metricscfg.conf:
657 info:
658 version: 1.0.0
659 description: Metrics initial local configuration
660 logger:
661 logLevel: "debug"
662 configuration:
663 nfStream:
664 urls:
665 - "sd-core-kafka-headless:9092"
666 topic:
667 name: "sdcore-nf-data-source"
668 group:
669 analytics: "analytics"
670 mongodb: "mongodb"
671 restapi: "restapi"
672 prometheus: "prometheus"
673 analyticsStream:
674 enable: true
675 urls:
676 - "sd-core-kafka-headless:9092"
677 topic: "sdcore-analytics-feed"
678