blob: dc196fd8629d1fab5e50e94a49b3134edfe0b6be [file] [log] [blame]
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -06001# SPDX-FileCopyrightText: 2022-present Intel Corporation
badhri854c028b32021-11-03 18:24:05 -05002# Copyright 2020-present Open Networking Foundation
3#
Ajay Lotan Thakur03189d22022-02-10 14:06:03 -06004# SPDX-License-Identifier: Apache-2.0
badhri854c028b32021-11-03 18:24:05 -05005
6images:
Ajay Lotan Thakur71115fe2022-03-03 22:26:08 -07007 repository: "" #default docker hub
badhri854c028b32021-11-03 18:24:05 -05008 tags:
Ajay Lotan Thakur71115fe2022-03-03 22:26:08 -07009 init: omecproject/pod-init:1.0.0
Vijaya Tiruveedula971c85b2022-11-09 06:39:35 -070010 amf: omecproject/5gc-amf:master-c1a1a75
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -060011 nrf: omecproject/5gc-nrf:master-4313faa
Vijaya Tiruveedula971c85b2022-11-09 06:39:35 -070012 smf: omecproject/5gc-smf:master-a39c30c
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -060013 ausf: omecproject/5gc-ausf:master-c84dff4
14 nssf: omecproject/5gc-nssf:master-4e5aef3
15 pcf: omecproject/5gc-pcf:master-bcbdeb0
16 udr: omecproject/5gc-udr:master-35eb7b7
17 udm: omecproject/5gc-udm:master-a0f0671
Ajay Lotan Thakur4a2416f2022-10-10 11:22:00 -060018 webui: omecproject/5gc-webui:master-1121545
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -060019 sctplb: omecproject/sctplb:master-bf081d5
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -060020 metricfunc: metricfunc:0.0.1-dev-local0
Vijaya Tiruveedula971c85b2022-11-09 06:39:35 -070021 upfadapter: omecproject/5gc-smf:master-a39c30c
badhri854c028b32021-11-03 18:24:05 -050022 pullPolicy: IfNotPresent
badhri854c028b32021-11-03 18:24:05 -050023
24resources:
25 enabled: false
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -060026 sctplb:
27 requests:
28 cpu: 2
29 memory: 1Gi
30 limits:
31 cpu: 2
32 memory: 1Gi
badhri854c028b32021-11-03 18:24:05 -050033 amf:
34 requests:
Ajay Lotan Thakur6ed2e122022-03-04 11:10:31 -070035 cpu: 2
badhri854c028b32021-11-03 18:24:05 -050036 memory: 1Gi
37 limits:
38 cpu: 2
39 memory: 1Gi
40 nrf:
41 requests:
42 cpu: 2
43 memory: 1Gi
44 limits:
45 cpu: 2
46 memory: 1Gi
47 smf:
48 requests:
49 cpu: 2
50 memory: 1Gi
51 limits:
52 cpu: 2
53 memory: 1Gi
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -060054 upfadapter:
55 requests:
56 cpu: 1
57 memory: 1Gi
58 limits:
59 cpu: 1
60 memory: 1Gi
badhri854c028b32021-11-03 18:24:05 -050061 ausf:
62 requests:
63 cpu: 2
64 memory: 1Gi
65 limits:
66 cpu: 2
67 memory: 1Gi
68 nssf:
69 requests:
70 cpu: 2
71 memory: 1Gi
72 limits:
73 cpu: 2
74 memory: 1Gi
75 pcf:
76 requests:
77 cpu: 2
78 memory: 1Gi
79 limits:
80 cpu: 2
81 memory: 1Gi
82 udr:
83 requests:
84 cpu: 2
85 memory: 1Gi
86 limits:
87 cpu: 2
88 memory: 1Gi
89 udm:
90 requests:
91 cpu: 2
92 memory: 1Gi
93 limits:
94 cpu: 2
95 memory: 1Gi
96 webui:
97 requests:
98 cpu: 1
99 memory: 1Gi
100 limits:
101 cpu: 1
102 memory: 1Gi
103
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -0600104 metricfunc:
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -0600105 requests:
106 cpu: 1
107 memory: 1Gi
108 limits:
109 cpu: 1
110 memory: 1Gi
111
112kafka:
113 deploy: false
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -0600114 nfKafka:
115 urls:
116 - "sd-core-kafka-headless:9092"
117 topic: "sdcore-nf-data-source"
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -0600118
badhri854c028b32021-11-03 18:24:05 -0500119mongodb:
120 deploy: true
121 fullnameOverride: mongodb
122 persistence:
123 enabled: false
124 auth:
125 enabled: false
126 serviceAccount:
127 create: false
128 #clusterDomain: cluster.local
129 #architecture: replicaset
130 #replicaCount: 3
131
132config:
133 managedByConfigPod: # config comes from helm by default, if enabled true, then discard
134 enabled: false # helm chart config and use the config from config Pod
135 syncUrl: "" # Get the config from adapater in case control plane is down
136 useExistingConfigMap: false
badhri859b2ce392022-01-18 12:45:40 -0600137 imagePath: /free5gc
badhri854c028b32021-11-03 18:24:05 -0500138 coreDump:
139 enabled: false
140 path: /tmp/coredump
141 mongodb:
142 name: free5gc
143 url: mongodb://mongodb
144 grpc:
145 golog_verbosity: "99"
146 severity: "info"
147 trace: "all"
148 verbosity: "debug"
149 logger:
150 # network function
151 AMF:
152 debugLevel: info
153 ReportCaller: false
154 SMF:
155 debugLevel: info
156 ReportCaller: false
157 UDR:
158 debugLevel: info
159 ReportCaller: false
160 UDM:
161 debugLevel: info
162 ReportCaller: false
163 NRF:
164 debugLevel: info
165 ReportCaller: false
166 PCF:
167 debugLevel: info
168 ReportCaller: false
169 AUSF:
170 debugLevel: info
171 ReportCaller: false
172 N3IWF:
173 debugLevel: info
174 ReportCaller: false
175 # library
176 NAS:
177 debugLevel: info
178 ReportCaller: false
179 FSM:
180 debugLevel: info
181 ReportCaller: false
182 NGAP:
183 debugLevel: info
184 ReportCaller: false
185 NamfComm:
186 debugLevel: info
187 ReportCaller: false
188 NamfEventExposure:
189 debugLevel: info
190 ReportCaller: false
191 NsmfPDUSession:
192 debugLevel: info
193 ReportCaller: false
194 NudrDataRepository:
195 debugLevel: info
196 ReportCaller: false
197 OpenApi:
198 debugLevel: info
199 ReportCaller: false
200 Aper:
201 debugLevel: info
202 ReportCaller: false
203 CommonConsumerTest:
204 debugLevel: info
205 ReportCaller: false
206 PFCP:
207 debugLevel: info
208 ReportCaller: false
209 MongoDBLibrary:
210 debugLevel: info
211 ReportCaller: false
212 PathUtil:
213 debugLevel: info
214 ReportCaller: false
215 # webui
216 WEBUI:
217 debugLevel: info
218 ReportCaller: false
219 webui:
220 deploy: true
221 #podAnnotations:
222 serviceType: ClusterIP
223 urlport:
224 port: 5000
225 # Provide nodePort when serviceType is NodePort
226 #nodePort: 35000
227 grpc:
228 port: 9876
229 ingress:
230 enabled: false
231 hostname: free5gc.local
232 path: /
233 pathType: Prefix
234 # extraHosts:
235 # - host: free5gc.local
236 # path: /
237 cfgFiles:
238 # https://github.com/free5gc/free5gc/blob/main/config/webuicfg.yaml
239 webuicfg.conf:
240 info:
241 version: 1.0.0
242 description: WebUI initial local configuration
Ajay Lotan Thakur58371c42022-03-10 08:12:41 -0700243 configuration:
244 spec-compliant-sdf: false
badhri854c028b32021-11-03 18:24:05 -0500245 udm:
246 deploy: true
247 #podAnnotations:
248 serviceType: ClusterIP
249 sbi:
250 port: 29503
251 # Provide nodePort when serviceType is NodePort
252 #nodePort: 30074
253 cfgFiles:
254 # https://github.com/free5gc/free5gc/blob/main/config/udmcfg.yaml
255 udmcfg.conf:
256 info:
257 version: 1.0.0
258 description: UDM initial local configuration
259 configuration:
260 nrfUri: http://nrf:29510
261 plmnList:
262 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530263 mcc: "208"
264 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500265 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530266 mcc: "222"
267 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500268 serviceNameList:
269 - nudm-sdm
270 - nudm-uecm
271 - nudm-ueau
272 - nudm-ee
273 - nudm-pp
274 sbi:
275 scheme: http
276 bindingIPv4: "0.0.0.0"
277 registerIPv4: udm
278 tls:
279 log: free5gc/udmsslkey.log
280 pem: free5gc/support/TLS/udm.pem
281 key: free5gc/support/TLS/udm.key
282 keys:
283 udmProfileAHNPublicKey: 5a8d38864820197c3394b92613b20b91633cbd897119273bf8e4a6f4eec0a650
284 udmProfileAHNPrivateKey: c53c22208b61860b06c62e5406a7b330c2b577aa5558981510d128247d38bd1d
285 udmProfileBHNPublicKey: 0472DA71976234CE833A6907425867B82E074D44EF907DFB4B3E21C1C2256EBCD15A7DED52FCBB097A4ED250E036C7B9C8C7004C4EEDC4F068CD7BF8D3F900E3B4
286 udmProfileBHNPrivateKey: F1AB1074477EBCC7F554EA1C5FC368B1616730155E0041AC447D6301975FECDA
287 udr:
288 deploy: true
289 #podAnnotations:
290 serviceType: ClusterIP
291 sbi:
292 port: 29504
293 # Provide nodePort when serviceType is NodePort
294 #nodePort: 30074
295 cfgFiles:
296 # https://github.com/free5gc/free5gc/blob/main/config/udrcfg.yaml
297 udrcfg.conf:
298 info:
299 version: 1.0.0
300 description: UDR initial local configuration
301 configuration:
302 nrfUri: http://nrf:29510
303 plmnSupportList:
304 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530305 mcc: "208"
306 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500307 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530308 mcc: "333"
309 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500310 sbi:
311 scheme: http
312 bindingIPv4: "0.0.0.0"
313 registerIPv4: udr
314 pcf:
315 deploy: true
316 #podAnnotations:
317 serviceType: ClusterIP
318 sbi:
319 port: 29507
320 # Provide nodePort when serviceType is NodePort
321 #nodePort: 30077
322 cfgFiles:
323 # https://github.com/free5gc/free5gc/blob/main/config/pcfcfg.yaml
324 pcfcfg.conf:
325 info:
326 version: 1.0.0
327 description: PCF initial local configuration
328 configuration:
329 pcfName: PCF
330 nrfUri: http://nrf:29510
331 sbi:
332 scheme: http
333 bindingIPv4: "0.0.0.0"
334 registerIPv4: pcf
335 defaultBdtRefId: BdtPolicyId-
336 plmnList:
337 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530338 mcc: "208"
339 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500340 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530341 mcc: "333"
342 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500343 serviceList:
344 - serviceName: npcf-am-policy-control
345 - serviceName: npcf-smpolicycontrol
346 suppFeat: 3fff
347 - serviceName: npcf-bdtpolicycontrol
348 - serviceName: npcf-policyauthorization
349 suppFeat: 3
350 - serviceName: npcf-eventexposure
351 - serviceName: npcf-ue-policy-control
352 nssf:
353 deploy: true
354 #podAnnotations:
355 serviceType: ClusterIP
356 sbi:
357 port: 29531
358 # Provide nodePort when serviceType is NodePort
359 #nodePort: 30081
360 cfgFiles:
361 # https://github.com/free5gc/free5gc/blob/main/config/nssfcfg.yaml
362 nssfcfg.conf:
363 info:
364 version: 1.0.0
365 description: NSSF initial local configuration
366 configuration:
367 nssfName: NSSF
368 nrfUri: http://nrf:29510
369 sbi:
370 scheme: http
371 bindingIPv4: "0.0.0.0"
372 registerIPv4: nssf
373 serviceNameList:
374 - nnssf-nsselection
375 - nnssf-nssaiavailability
376 supportedPlmnList:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530377 - mcc: "208"
378 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500379 supportedNssaiInPlmnList:
380 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530381 mcc: "208"
382 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500383 supportedSnssaiList:
384 - sst: 1
385 sd: "010203"
386 nsiList:
387 - snssai:
388 sst: 1
389 sd: "010203"
390 nsiInformationList:
391 - nrfId: http://nrf:29510/nnrf-nfm/v1/nf-instances
392 nsiId: 22
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -0600393 sctplb:
394 deploy: false
395 podAnnotations:
396 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
397 serviceType: ClusterIP
398 sctp_grpc:
399 port: 9000
400 #nodePort: 30088
401 ngapp:
402 #externalIp:
403 port: 38412
404 #nodePort: 30071
405 cfgFiles:
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -0600406 sctplb.yaml:
407 info:
408 version: 1.0.0
409 description: SCTPLB initial local configuration
410 logger:
411 sctpLogs: info
412 dispatcherLogs: info
413 clientdiscLogs: info
414 configuration:
415 serviceNames:
416 - "amf-headless"
417 ngapIpList:
418 - "0.0.0.0"
badhri854c028b32021-11-03 18:24:05 -0500419 amf:
420 deploy: true
Badhrinath Padmanabhanbf5738b2022-10-31 21:04:36 -0500421 serviceAnnotations:
422 amfFqdn: "aether-amf.tenant-site.company.com"
badhri854c028b32021-11-03 18:24:05 -0500423 podAnnotations:
424 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
425 serviceType: ClusterIP
426 prometheus:
427 port: 9089
428 # Provide nodePort when serviceType is NodePort
429 #nodePort: 30084
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -0600430 sctp_grpc:
431 port: 9000
432 #nodePort: 30088
badhri854c028b32021-11-03 18:24:05 -0500433 sbi:
434 port: 29518
435 #nodePort: 30088
436 ngapp:
437 #externalIp:
438 port: 38412
439 #nodePort: 30071
440 cfgFiles:
441 # https://github.com/free5gc/free5gc/blob/main/config/amfcfg.yaml
442 amfcfg.conf:
443 info:
444 version: 1.0.0
445 description: AMF initial local configuration
446 configuration:
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -0600447 amfDBName: sdcore_amf
448 enableDBStore: false
badhri854c028b32021-11-03 18:24:05 -0500449 ngapIpList:
450 - "0.0.0.0"
451 amfName: AMF
452 nrfUri: http://nrf:29510
453 sbi:
454 scheme: http
455 bindingIPv4: "0.0.0.0"
456 registerIPv4: amf
457 serviceNameList:
458 - namf-comm
459 - namf-evts
460 - namf-mt
461 - namf-loc
462 - namf-oam
463 servedGuamiList:
464 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530465 mcc: "208"
466 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500467 amfId: cafe00
468 supportTaiList:
469 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530470 mcc: "208"
471 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500472 tac: 1
473 plmnSupportList:
474 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530475 mcc: "208"
476 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500477 snssaiList:
478 - sst: 1
479 sd: "010203"
480 supportDnnList:
481 - internet
482 security:
483 integrityOrder:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530484 - NIA1
badhri854c028b32021-11-03 18:24:05 -0500485 - NIA2
486 cipheringOrder:
487 - NEA0
488 networkName:
489 full: Aether5G
490 short: Aether
491 networkFeatureSupport5GS: # 5gs Network Feature Support IE, refer to TS 24.501
492 enable: true # append this IE in Registration accept or not
493 imsVoPS: 0 # IMS voice over PS session indicator (uinteger, range: 0~1)
494 emc: 0 # Emergency service support indicator for 3GPP access (uinteger, range: 0~3)
495 emf: 0 # Emergency service fallback indicator for 3GPP access (uinteger, range: 0~3)
496 iwkN26: 0 # Interworking without N26 interface indicator (uinteger, range: 0~1)
497 mpsi: 0 # MPS indicator (uinteger, range: 0~1)
498 emcN3: 0 # Emergency service support indicator for Non-3GPP access (uinteger, range: 0~1)
499 mcsi: 0 # MCS indicator (uinteger, range: 0~1)
500 t3502Value: 720 # timer value (seconds) at UE side
501 t3512Value: 3600 # timer value (seconds) at UE side
502 non3gppDeregistrationTimerValue: 3240 # timer value (seconds) at UE side
503 # retransmission timer for paging message
504 t3513:
505 enable: true # true or false
506 expireTime: 6s # default is 6 seconds
507 maxRetryTimes: 4 # the max number of retransmission
508 # retransmission timer for NAS Deregistration Request message
509 t3522:
510 enable: true # true or false
511 expireTime: 6s # default is 6 seconds
512 maxRetryTimes: 4 # the max number of retransmission
513 # retransmission timer for NAS Registration Accept message
514 t3550:
515 enable: true # true or false
516 expireTime: 6s # default is 6 seconds
517 maxRetryTimes: 4 # the max number of retransmission
518 # retransmission timer for NAS Authentication Request/Security Mode Command message
519 t3560:
520 enable: true # true or false
521 expireTime: 6s # default is 6 seconds
522 maxRetryTimes: 4 # the max number of retransmission
523 # retransmission timer for NAS Notification message
524 t3565:
525 enable: true # true or false
526 expireTime: 6s # default is 6 seconds
527 maxRetryTimes: 4 # the max number of retransmission
528 nrf:
529 deploy: true
530 #podAnnotations:
531 serviceType: ClusterIP
532 sbi:
533 port: 29510
534 # Provide nodePort when serviceType is NodePort
535 #nodePort: 30070
536 cfgFiles:
537 # https://github.com/free5gc/free5gc/blob/main/config/nrfcfg.yaml
538 nrfcfg.conf:
539 info:
540 version: 1.0.0
541 description: NRF initial local configuration
542 configuration:
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -0600543 mongoDBStreamEnable: true
544 nfProfileExpiryEnable: true
545 nfKeepAliveTime: 60
badhri854c028b32021-11-03 18:24:05 -0500546 sbi:
547 scheme: http
548 bindingIPv4: "0.0.0.0"
549 registerIPv4: nrf
550 DefaultPlmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530551 mcc: "208"
552 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500553 serviceNameList:
554 - nnrf-nfm
555 - nnrf-disc
556 smf:
557 deploy: true
558 podAnnotations:
559 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
560 serviceType: ClusterIP
561 n4:
562 port: 8805
563 # Provide nodePort when serviceType is NodePort
564 #nodePort: 30021
565 prometheus:
566 port: 9089
567 #nodePort: 30084
568 sbi:
569 port: 29502
570 #nodePort: 30080
571 cfgFiles:
572 uerouting.conf:
573 info:
574 version: 1.0.0
575 description: Routing information for UE
576 # https://github.com/free5gc/free5gc/blob/main/config/smfcfg.yaml
577 smfcfg.conf:
578 info:
579 version: 1.0.0
580 description: SMF initial local configuration
581 configuration:
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -0600582 smfDBName: sdcore_smf
583 enableDBStore: false
badhri854c028b32021-11-03 18:24:05 -0500584 pfcp:
585 addr: "POD_IP"
586 smfName: SMF
587 nrfUri: http://nrf:29510
588 sbi:
589 scheme: http
590 bindingIPv4: "0.0.0.0"
591 registerIPv4: smf
592 tls:
593 key: gofree5gc/support/TLS/smf.key
594 pem: gofree5gc/support/TLS/smf.pem
595 serviceNameList:
596 - nsmf-pdusession
597 - nsmf-event-exposure
598 snssaiInfos:
599 - dnnInfos:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530600 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500601 dns: # the IP address of DNS
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530602 ipv4: "8.8.8.8"
603 ipv6: "2001:4860:4860::8888"
badhri854c028b32021-11-03 18:24:05 -0500604 ueSubnet: 172.250.0.0/16 # should be CIDR type
605 sNssai:
606 sd: "010203"
607 sst: 1
608 userplane_information:
609 up_nodes:
610 gNB1:
611 type: AN
612 UPF:
613 type: UPF
614 node_id: upf
615 sNssaiUpfInfos: # S-NSSAI information list for this UPF
616 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
617 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
618 sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
619 dnnUpfInfoList: # DNN information list for this S-NSSAI
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530620 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500621 plmnId:
622 mcc: "208"
623 mnc: "93"
624 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
625 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
626 sd: "112233" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
627 dnnUpfInfoList: # DNN information list for this S-NSSAI
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530628 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500629 plmnId:
630 mcc: "208"
631 mnc: "93"
632 interfaces: # Interface list for this UPF
633 - interfaceType: N3 # the type of the interface (N3 or N9)
634 endpoints: # the IP address of this N3/N9 interface on this UPF
635 - upf
636 networkInstance: internet # Data Network Name (DNN)
637
638 links:
639 - A: gNB1
640 B: UPF
641 ausf:
642 deploy: true
643 #podAnnotations:
644 serviceType: ClusterIP
645 sbi:
646 port: 29509
647 # Provide nodePort when serviceType is NodePort
648 #nodePort: 30082
649 cfgFiles:
650 # https://github.com/free5gc/free5gc/blob/main/config/ausfcfg.yaml
651 ausfcfg.conf:
652 info:
653 version: 1.0.0
654 description: AUSF initial local configuration
655 configuration:
656 nrfUri: http://nrf:29510
657 sbi:
658 scheme: http
659 bindingIPv4: "0.0.0.0"
660 registerIPv4: ausf
661 serviceNameList:
662 - nausf-auth
663 plmnSupportList:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530664 - mcc: "208"
665 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500666 groupId: ausfGroup001
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -0600667 metricfunc:
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -0600668 deploy: false
669 serviceType: ClusterIP
670 prometheus:
671 port: 9089
672 cfgFiles:
673 metricscfg.conf:
674 info:
675 version: 1.0.0
676 description: Metrics initial local configuration
677 logger:
678 logLevel: "debug"
679 configuration:
680 nfStream:
681 urls:
682 - "sd-core-kafka-headless:9092"
683 topic:
684 name: "sdcore-nf-data-source"
685 group:
686 analytics: "analytics"
687 mongodb: "mongodb"
688 restapi: "restapi"
689 prometheus: "prometheus"
690 analyticsStream:
691 enable: true
692 urls:
693 - "sd-core-kafka-headless:9092"
694 topic: "sdcore-analytics-feed"
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -0600695 upfadapter:
696 deploy: false
697 serviceType: ClusterIP
698 n4:
699 port: 8805
700 # Provide nodePort when serviceType is NodePort
701 # nodePort: 30021
702 rest:
703 port: 8090
704 #nodePort: 30080
705 cfgFiles:
706 config.yaml:
707 info:
708 version: 1.0.0
709 description: UPF Adapter initial local configuration
710 logger:
711 level: info
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -0600712