blob: c0e482ef588a0ea733b324b7e920dcbd9a7fd5bd [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
Badhrinath Padmanabhana0c93b72022-11-21 21:53:00 -0600223 # serviceAnnotations:
224 # external-dns.alpha.kubernetes.io/hostname: "aether-config.tenant-site.company.com"
badhri854c028b32021-11-03 18:24:05 -0500225 urlport:
226 port: 5000
227 # Provide nodePort when serviceType is NodePort
228 #nodePort: 35000
229 grpc:
230 port: 9876
231 ingress:
232 enabled: false
233 hostname: free5gc.local
234 path: /
235 pathType: Prefix
236 # extraHosts:
237 # - host: free5gc.local
238 # path: /
239 cfgFiles:
240 # https://github.com/free5gc/free5gc/blob/main/config/webuicfg.yaml
241 webuicfg.conf:
242 info:
243 version: 1.0.0
244 description: WebUI initial local configuration
Ajay Lotan Thakur58371c42022-03-10 08:12:41 -0700245 configuration:
246 spec-compliant-sdf: false
badhri854c028b32021-11-03 18:24:05 -0500247 udm:
248 deploy: true
249 #podAnnotations:
250 serviceType: ClusterIP
251 sbi:
252 port: 29503
253 # Provide nodePort when serviceType is NodePort
254 #nodePort: 30074
255 cfgFiles:
256 # https://github.com/free5gc/free5gc/blob/main/config/udmcfg.yaml
257 udmcfg.conf:
258 info:
259 version: 1.0.0
260 description: UDM initial local configuration
261 configuration:
262 nrfUri: http://nrf:29510
263 plmnList:
264 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530265 mcc: "208"
266 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500267 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530268 mcc: "222"
269 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500270 serviceNameList:
271 - nudm-sdm
272 - nudm-uecm
273 - nudm-ueau
274 - nudm-ee
275 - nudm-pp
276 sbi:
277 scheme: http
278 bindingIPv4: "0.0.0.0"
279 registerIPv4: udm
280 tls:
281 log: free5gc/udmsslkey.log
282 pem: free5gc/support/TLS/udm.pem
283 key: free5gc/support/TLS/udm.key
284 keys:
285 udmProfileAHNPublicKey: 5a8d38864820197c3394b92613b20b91633cbd897119273bf8e4a6f4eec0a650
286 udmProfileAHNPrivateKey: c53c22208b61860b06c62e5406a7b330c2b577aa5558981510d128247d38bd1d
287 udmProfileBHNPublicKey: 0472DA71976234CE833A6907425867B82E074D44EF907DFB4B3E21C1C2256EBCD15A7DED52FCBB097A4ED250E036C7B9C8C7004C4EEDC4F068CD7BF8D3F900E3B4
288 udmProfileBHNPrivateKey: F1AB1074477EBCC7F554EA1C5FC368B1616730155E0041AC447D6301975FECDA
289 udr:
290 deploy: true
291 #podAnnotations:
292 serviceType: ClusterIP
293 sbi:
294 port: 29504
295 # Provide nodePort when serviceType is NodePort
296 #nodePort: 30074
297 cfgFiles:
298 # https://github.com/free5gc/free5gc/blob/main/config/udrcfg.yaml
299 udrcfg.conf:
300 info:
301 version: 1.0.0
302 description: UDR initial local configuration
303 configuration:
304 nrfUri: http://nrf:29510
305 plmnSupportList:
306 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530307 mcc: "208"
308 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500309 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530310 mcc: "333"
311 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500312 sbi:
313 scheme: http
314 bindingIPv4: "0.0.0.0"
315 registerIPv4: udr
316 pcf:
317 deploy: true
318 #podAnnotations:
319 serviceType: ClusterIP
320 sbi:
321 port: 29507
322 # Provide nodePort when serviceType is NodePort
323 #nodePort: 30077
324 cfgFiles:
325 # https://github.com/free5gc/free5gc/blob/main/config/pcfcfg.yaml
326 pcfcfg.conf:
327 info:
328 version: 1.0.0
329 description: PCF initial local configuration
330 configuration:
331 pcfName: PCF
332 nrfUri: http://nrf:29510
333 sbi:
334 scheme: http
335 bindingIPv4: "0.0.0.0"
336 registerIPv4: pcf
337 defaultBdtRefId: BdtPolicyId-
338 plmnList:
339 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530340 mcc: "208"
341 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500342 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530343 mcc: "333"
344 mnc: "88"
badhri854c028b32021-11-03 18:24:05 -0500345 serviceList:
346 - serviceName: npcf-am-policy-control
347 - serviceName: npcf-smpolicycontrol
348 suppFeat: 3fff
349 - serviceName: npcf-bdtpolicycontrol
350 - serviceName: npcf-policyauthorization
351 suppFeat: 3
352 - serviceName: npcf-eventexposure
353 - serviceName: npcf-ue-policy-control
354 nssf:
355 deploy: true
356 #podAnnotations:
357 serviceType: ClusterIP
358 sbi:
359 port: 29531
360 # Provide nodePort when serviceType is NodePort
361 #nodePort: 30081
362 cfgFiles:
363 # https://github.com/free5gc/free5gc/blob/main/config/nssfcfg.yaml
364 nssfcfg.conf:
365 info:
366 version: 1.0.0
367 description: NSSF initial local configuration
368 configuration:
369 nssfName: NSSF
370 nrfUri: http://nrf:29510
371 sbi:
372 scheme: http
373 bindingIPv4: "0.0.0.0"
374 registerIPv4: nssf
375 serviceNameList:
376 - nnssf-nsselection
377 - nnssf-nssaiavailability
378 supportedPlmnList:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530379 - mcc: "208"
380 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500381 supportedNssaiInPlmnList:
382 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530383 mcc: "208"
384 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500385 supportedSnssaiList:
386 - sst: 1
387 sd: "010203"
388 nsiList:
389 - snssai:
390 sst: 1
391 sd: "010203"
392 nsiInformationList:
393 - nrfId: http://nrf:29510/nnrf-nfm/v1/nf-instances
394 nsiId: 22
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -0600395 sctplb:
396 deploy: false
397 podAnnotations:
398 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
399 serviceType: ClusterIP
400 sctp_grpc:
401 port: 9000
402 #nodePort: 30088
403 ngapp:
404 #externalIp:
405 port: 38412
406 #nodePort: 30071
407 cfgFiles:
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -0600408 sctplb.yaml:
409 info:
410 version: 1.0.0
411 description: SCTPLB initial local configuration
412 logger:
413 sctpLogs: info
414 dispatcherLogs: info
415 clientdiscLogs: info
416 configuration:
417 serviceNames:
418 - "amf-headless"
419 ngapIpList:
420 - "0.0.0.0"
badhri854c028b32021-11-03 18:24:05 -0500421 amf:
422 deploy: true
Badhrinath Padmanabhanb8f42912022-11-16 13:58:04 -0500423 # serviceAnnotations:
424 # external-dns.alpha.kubernetes.io/hostname: "aether-amf.tenant-site.company.com"
badhri854c028b32021-11-03 18:24:05 -0500425 podAnnotations:
426 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
427 serviceType: ClusterIP
428 prometheus:
429 port: 9089
430 # Provide nodePort when serviceType is NodePort
431 #nodePort: 30084
Ajay Lotan Thakur6de3b782022-04-14 08:41:12 -0600432 sctp_grpc:
433 port: 9000
434 #nodePort: 30088
badhri854c028b32021-11-03 18:24:05 -0500435 sbi:
436 port: 29518
437 #nodePort: 30088
438 ngapp:
439 #externalIp:
440 port: 38412
441 #nodePort: 30071
442 cfgFiles:
443 # https://github.com/free5gc/free5gc/blob/main/config/amfcfg.yaml
444 amfcfg.conf:
445 info:
446 version: 1.0.0
447 description: AMF initial local configuration
448 configuration:
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -0600449 amfDBName: sdcore_amf
450 enableDBStore: false
badhri854c028b32021-11-03 18:24:05 -0500451 ngapIpList:
452 - "0.0.0.0"
453 amfName: AMF
454 nrfUri: http://nrf:29510
455 sbi:
456 scheme: http
457 bindingIPv4: "0.0.0.0"
458 registerIPv4: amf
459 serviceNameList:
460 - namf-comm
461 - namf-evts
462 - namf-mt
463 - namf-loc
464 - namf-oam
465 servedGuamiList:
466 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530467 mcc: "208"
468 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500469 amfId: cafe00
470 supportTaiList:
471 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530472 mcc: "208"
473 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500474 tac: 1
475 plmnSupportList:
476 - plmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530477 mcc: "208"
478 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500479 snssaiList:
480 - sst: 1
481 sd: "010203"
482 supportDnnList:
483 - internet
484 security:
485 integrityOrder:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530486 - NIA1
badhri854c028b32021-11-03 18:24:05 -0500487 - NIA2
488 cipheringOrder:
489 - NEA0
490 networkName:
491 full: Aether5G
492 short: Aether
493 networkFeatureSupport5GS: # 5gs Network Feature Support IE, refer to TS 24.501
494 enable: true # append this IE in Registration accept or not
495 imsVoPS: 0 # IMS voice over PS session indicator (uinteger, range: 0~1)
496 emc: 0 # Emergency service support indicator for 3GPP access (uinteger, range: 0~3)
497 emf: 0 # Emergency service fallback indicator for 3GPP access (uinteger, range: 0~3)
498 iwkN26: 0 # Interworking without N26 interface indicator (uinteger, range: 0~1)
499 mpsi: 0 # MPS indicator (uinteger, range: 0~1)
500 emcN3: 0 # Emergency service support indicator for Non-3GPP access (uinteger, range: 0~1)
501 mcsi: 0 # MCS indicator (uinteger, range: 0~1)
502 t3502Value: 720 # timer value (seconds) at UE side
503 t3512Value: 3600 # timer value (seconds) at UE side
504 non3gppDeregistrationTimerValue: 3240 # timer value (seconds) at UE side
505 # retransmission timer for paging message
506 t3513:
507 enable: true # true or false
508 expireTime: 6s # default is 6 seconds
509 maxRetryTimes: 4 # the max number of retransmission
510 # retransmission timer for NAS Deregistration Request message
511 t3522:
512 enable: true # true or false
513 expireTime: 6s # default is 6 seconds
514 maxRetryTimes: 4 # the max number of retransmission
515 # retransmission timer for NAS Registration Accept message
516 t3550:
517 enable: true # true or false
518 expireTime: 6s # default is 6 seconds
519 maxRetryTimes: 4 # the max number of retransmission
520 # retransmission timer for NAS Authentication Request/Security Mode Command message
521 t3560:
522 enable: true # true or false
523 expireTime: 6s # default is 6 seconds
524 maxRetryTimes: 4 # the max number of retransmission
525 # retransmission timer for NAS Notification message
526 t3565:
527 enable: true # true or false
528 expireTime: 6s # default is 6 seconds
529 maxRetryTimes: 4 # the max number of retransmission
530 nrf:
531 deploy: true
532 #podAnnotations:
533 serviceType: ClusterIP
534 sbi:
535 port: 29510
536 # Provide nodePort when serviceType is NodePort
537 #nodePort: 30070
538 cfgFiles:
539 # https://github.com/free5gc/free5gc/blob/main/config/nrfcfg.yaml
540 nrfcfg.conf:
541 info:
542 version: 1.0.0
543 description: NRF initial local configuration
544 configuration:
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -0600545 mongoDBStreamEnable: true
546 nfProfileExpiryEnable: true
547 nfKeepAliveTime: 60
badhri854c028b32021-11-03 18:24:05 -0500548 sbi:
549 scheme: http
550 bindingIPv4: "0.0.0.0"
551 registerIPv4: nrf
552 DefaultPlmnId:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530553 mcc: "208"
554 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500555 serviceNameList:
556 - nnrf-nfm
557 - nnrf-disc
558 smf:
559 deploy: true
560 podAnnotations:
561 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
562 serviceType: ClusterIP
Badhrinath Padmanabhanb8f42912022-11-16 13:58:04 -0500563 upfPort: 8805
badhri854c028b32021-11-03 18:24:05 -0500564 n4:
565 port: 8805
566 # Provide nodePort when serviceType is NodePort
567 #nodePort: 30021
568 prometheus:
569 port: 9089
570 #nodePort: 30084
571 sbi:
572 port: 29502
573 #nodePort: 30080
574 cfgFiles:
575 uerouting.conf:
576 info:
577 version: 1.0.0
578 description: Routing information for UE
579 # https://github.com/free5gc/free5gc/blob/main/config/smfcfg.yaml
580 smfcfg.conf:
581 info:
582 version: 1.0.0
583 description: SMF initial local configuration
584 configuration:
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -0600585 smfDBName: sdcore_smf
586 enableDBStore: false
badhri854c028b32021-11-03 18:24:05 -0500587 pfcp:
588 addr: "POD_IP"
589 smfName: SMF
590 nrfUri: http://nrf:29510
591 sbi:
592 scheme: http
593 bindingIPv4: "0.0.0.0"
594 registerIPv4: smf
595 tls:
596 key: gofree5gc/support/TLS/smf.key
597 pem: gofree5gc/support/TLS/smf.pem
598 serviceNameList:
599 - nsmf-pdusession
600 - nsmf-event-exposure
601 snssaiInfos:
602 - dnnInfos:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530603 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500604 dns: # the IP address of DNS
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530605 ipv4: "8.8.8.8"
606 ipv6: "2001:4860:4860::8888"
badhri854c028b32021-11-03 18:24:05 -0500607 ueSubnet: 172.250.0.0/16 # should be CIDR type
608 sNssai:
609 sd: "010203"
610 sst: 1
611 userplane_information:
612 up_nodes:
613 gNB1:
614 type: AN
615 UPF:
616 type: UPF
617 node_id: upf
618 sNssaiUpfInfos: # S-NSSAI information list for this UPF
619 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
620 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
621 sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
622 dnnUpfInfoList: # DNN information list for this S-NSSAI
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530623 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500624 plmnId:
625 mcc: "208"
626 mnc: "93"
627 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
628 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
629 sd: "112233" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
630 dnnUpfInfoList: # DNN information list for this S-NSSAI
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530631 - dnn: "internet"
badhri854c028b32021-11-03 18:24:05 -0500632 plmnId:
633 mcc: "208"
634 mnc: "93"
635 interfaces: # Interface list for this UPF
636 - interfaceType: N3 # the type of the interface (N3 or N9)
637 endpoints: # the IP address of this N3/N9 interface on this UPF
638 - upf
639 networkInstance: internet # Data Network Name (DNN)
640
641 links:
642 - A: gNB1
643 B: UPF
644 ausf:
645 deploy: true
646 #podAnnotations:
647 serviceType: ClusterIP
648 sbi:
649 port: 29509
650 # Provide nodePort when serviceType is NodePort
651 #nodePort: 30082
652 cfgFiles:
653 # https://github.com/free5gc/free5gc/blob/main/config/ausfcfg.yaml
654 ausfcfg.conf:
655 info:
656 version: 1.0.0
657 description: AUSF initial local configuration
658 configuration:
659 nrfUri: http://nrf:29510
660 sbi:
661 scheme: http
662 bindingIPv4: "0.0.0.0"
663 registerIPv4: ausf
664 serviceNameList:
665 - nausf-auth
666 plmnSupportList:
Vijaya Rani Tiruveedula61ee88f2022-03-03 17:47:13 +0530667 - mcc: "208"
668 mnc: "93"
badhri854c028b32021-11-03 18:24:05 -0500669 groupId: ausfGroup001
Ajay Lotan Thakura2e2adb2022-06-06 13:46:30 -0600670 metricfunc:
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -0600671 deploy: false
672 serviceType: ClusterIP
673 prometheus:
674 port: 9089
675 cfgFiles:
676 metricscfg.conf:
677 info:
678 version: 1.0.0
679 description: Metrics initial local configuration
680 logger:
681 logLevel: "debug"
682 configuration:
683 nfStream:
684 urls:
685 - "sd-core-kafka-headless:9092"
686 topic:
687 name: "sdcore-nf-data-source"
688 group:
689 analytics: "analytics"
690 mongodb: "mongodb"
691 restapi: "restapi"
692 prometheus: "prometheus"
693 analyticsStream:
694 enable: true
695 urls:
696 - "sd-core-kafka-headless:9092"
697 topic: "sdcore-analytics-feed"
Ajay Lotan Thakur9ad7dfe2022-07-25 17:26:03 -0600698 upfadapter:
699 deploy: false
700 serviceType: ClusterIP
701 n4:
702 port: 8805
703 # Provide nodePort when serviceType is NodePort
704 # nodePort: 30021
705 rest:
706 port: 8090
707 #nodePort: 30080
708 cfgFiles:
709 config.yaml:
710 info:
711 version: 1.0.0
712 description: UPF Adapter initial local configuration
713 logger:
714 level: info
Ajay Lotan Thakur491ed5a2022-05-31 17:33:00 -0600715