blob: aa8f4d70eb422d9706859728501c908c3c838a6b [file] [log] [blame]
Badhrinath987e1d82020-11-20 13:23:58 -06001# Copyright 2020-present Open Networking Foundation
2#
3# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
4
5images:
6 tags:
7 init: docker.io/omecproject/pod-init:1.0.0
badhrinathc7549a62021-05-11 18:40:43 -05008 amf: registry.aetherproject.org/omecproject/5gc-amf:onf-release3.0.5-latest
9 nrf: registry.aetherproject.org/omecproject/5gc-nrf:onf-release3.0.5-latest
10 smf: registry.aetherproject.org/omecproject/5gc-smf:onf-release3.0.5-latest
11 ausf: registry.aetherproject.org/omecproject/5gc-ausf:onf-release3.0.5-latest
12 nssf: registry.aetherproject.org/omecproject/5gc-nssf:onf-release3.0.5-latest
13 pcf: registry.aetherproject.org/omecproject/5gc-pcf:onf-release3.0.5-latest
14 udr: registry.aetherproject.org/omecproject/5gc-udr:onf-release3.0.5-latest
15 udm: registry.aetherproject.org/omecproject/5gc-udm:onf-release3.0.5-latest
16 webui: registry.aetherproject.org/omecproject/5gc-webui:onf-release3.0.5-latest
Badhrinath987e1d82020-11-20 13:23:58 -060017 pullPolicy: IfNotPresent
Hyunsun Moon6a651482021-02-26 01:46:44 -080018 # Optionally specify an array of imagePullSecrets.
19 # Secrets must be manually created in the namespace.
20 pullSecrets:
21 - name: aether.registry
Badhrinath987e1d82020-11-20 13:23:58 -060022
23resources:
24 enabled: false
25 amf:
26 requests:
27 cpu: 2
28 memory: 1Gi
29 limits:
30 cpu: 2
31 memory: 1Gi
32 nrf:
33 requests:
34 cpu: 2
35 memory: 1Gi
36 limits:
37 cpu: 2
38 memory: 1Gi
39 smf:
40 requests:
41 cpu: 2
42 memory: 1Gi
43 limits:
44 cpu: 2
45 memory: 1Gi
46 ausf:
47 requests:
48 cpu: 2
49 memory: 1Gi
50 limits:
51 cpu: 2
52 memory: 1Gi
53 nssf:
54 requests:
55 cpu: 2
56 memory: 1Gi
57 limits:
58 cpu: 2
59 memory: 1Gi
60 pcf:
61 requests:
62 cpu: 2
63 memory: 1Gi
64 limits:
65 cpu: 2
66 memory: 1Gi
67 udr:
68 requests:
69 cpu: 2
70 memory: 1Gi
71 limits:
72 cpu: 2
73 memory: 1Gi
74 udm:
75 requests:
76 cpu: 2
77 memory: 1Gi
78 limits:
79 cpu: 2
80 memory: 1Gi
81 webui:
82 requests:
83 cpu: 1
84 memory: 1Gi
85 limits:
86 cpu: 1
87 memory: 1Gi
88
89mongodb:
90 deploy: true
Hyunsun Moon6a651482021-02-26 01:46:44 -080091 fullnameOverride: mongodb
Badhrinath987e1d82020-11-20 13:23:58 -060092 persistence:
93 enabled: false
Hyunsun Moon6a651482021-02-26 01:46:44 -080094 auth:
95 enabled: false
96 serviceAccount:
97 create: false
98 #clusterDomain: cluster.local
99 #architecture: replicaset
100 #replicaCount: 3
Badhrinath987e1d82020-11-20 13:23:58 -0600101
102config:
Ajay Lotan Thakur45ea2f92021-06-25 03:07:59 -0500103 managedByConfigPod: # config comes from helm by default, if enabled true, then discard
Hyunsun Moon17354952021-08-21 17:41:26 -0700104 enabled: false # helm chart config and use the config from config Pod
Ajay Lotan Thakur45ea2f92021-06-25 03:07:59 -0500105 syncUrl: "" # Get the config from adapater in case control plane is down
Hyunsun Moonc73636b2021-03-24 15:47:08 -0700106 useExistingConfigMap: false
Badhrinath987e1d82020-11-20 13:23:58 -0600107 coreDump:
108 enabled: false
109 path: /tmp/coredump
Hyunsun Moon6a651482021-02-26 01:46:44 -0800110 mongodb:
111 name: free5gc
112 url: mongodb://mongodb
badhrinath.pa@gmail.comb918a802021-06-16 20:24:17 -0500113 grpc:
114 golog_verbosity: "99"
115 severity: "info"
116 trace: "all"
117 verbosity: "debug"
Ajay Lotan Thakuref182f42021-05-25 16:41:19 -0500118 logger:
119 # network function
120 AMF:
121 debugLevel: info
122 ReportCaller: false
123 SMF:
124 debugLevel: info
125 ReportCaller: false
126 UDR:
127 debugLevel: info
128 ReportCaller: false
129 UDM:
130 debugLevel: info
131 ReportCaller: false
132 NRF:
133 debugLevel: info
134 ReportCaller: false
135 PCF:
136 debugLevel: info
137 ReportCaller: false
138 AUSF:
139 debugLevel: info
140 ReportCaller: false
141 N3IWF:
142 debugLevel: info
143 ReportCaller: false
144 # library
145 NAS:
146 debugLevel: info
147 ReportCaller: false
148 FSM:
149 debugLevel: info
150 ReportCaller: false
151 NGAP:
152 debugLevel: info
153 ReportCaller: false
154 NamfComm:
155 debugLevel: info
156 ReportCaller: false
157 NamfEventExposure:
158 debugLevel: info
159 ReportCaller: false
160 NsmfPDUSession:
161 debugLevel: info
162 ReportCaller: false
163 NudrDataRepository:
164 debugLevel: info
165 ReportCaller: false
166 OpenApi:
167 debugLevel: info
168 ReportCaller: false
169 Aper:
170 debugLevel: info
171 ReportCaller: false
172 CommonConsumerTest:
173 debugLevel: info
174 ReportCaller: false
175 PFCP:
176 debugLevel: info
177 ReportCaller: false
178 MongoDBLibrary:
179 debugLevel: info
180 ReportCaller: false
181 PathUtil:
182 debugLevel: info
183 ReportCaller: false
184 # webui
185 WEBUI:
186 debugLevel: info
187 ReportCaller: false
Badhrinath987e1d82020-11-20 13:23:58 -0600188 webui:
189 deploy: true
Hyunsun Moon17354952021-08-21 17:41:26 -0700190 #podAnnotations:
191 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600192 urlport:
193 port: 5000
Hyunsun Moon17354952021-08-21 17:41:26 -0700194 # Provide nodePort when serviceType is NodePort
195 #nodePort: 35000
badhrinath.pa@gmail.comb918a802021-06-16 20:24:17 -0500196 grpc:
197 port: 9876
Hyunsun Moon6a651482021-02-26 01:46:44 -0800198 ingress:
199 enabled: false
200 hostname: free5gc.local
201 path: /
202 pathType: Prefix
203 # extraHosts:
204 # - host: free5gc.local
205 # path: /
206 cfgFiles:
207 # https://github.com/free5gc/free5gc/blob/main/config/webuicfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600208 webuicfg.conf:
209 info:
210 version: 1.0.0
211 description: WebUI initial local configuration
Hyunsun Moon6a651482021-02-26 01:46:44 -0800212 configuration: {}
Badhrinath987e1d82020-11-20 13:23:58 -0600213 udm:
214 deploy: true
Hyunsun Moon17354952021-08-21 17:41:26 -0700215 #podAnnotations:
216 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600217 sbi:
218 port: 29503
Hyunsun Moon17354952021-08-21 17:41:26 -0700219 # Provide nodePort when serviceType is NodePort
220 #nodePort: 30074
Hyunsun Moon6a651482021-02-26 01:46:44 -0800221 cfgFiles:
222 # https://github.com/free5gc/free5gc/blob/main/config/udmcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600223 udmcfg.conf:
224 info:
225 version: 1.0.0
226 description: UDM initial local configuration
227 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800228 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600229 serviceNameList:
230 - nudm-sdm
231 - nudm-uecm
232 - nudm-ueau
233 - nudm-ee
234 - nudm-pp
235 sbi:
236 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700237 bindingIPv4: "0.0.0.0"
238 registerIPv4: udm
Badhrinath987e1d82020-11-20 13:23:58 -0600239 tls:
240 log: free5gc/udmsslkey.log
241 pem: free5gc/support/TLS/udm.pem
242 key: free5gc/support/TLS/udm.key
Vijayab2309782021-04-15 22:55:31 +0530243 keys:
244 udmProfileAHNPublicKey: 5a8d38864820197c3394b92613b20b91633cbd897119273bf8e4a6f4eec0a650
245 udmProfileAHNPrivateKey: c53c22208b61860b06c62e5406a7b330c2b577aa5558981510d128247d38bd1d
246 udmProfileBHNPublicKey: 0472DA71976234CE833A6907425867B82E074D44EF907DFB4B3E21C1C2256EBCD15A7DED52FCBB097A4ED250E036C7B9C8C7004C4EEDC4F068CD7BF8D3F900E3B4
247 udmProfileBHNPrivateKey: F1AB1074477EBCC7F554EA1C5FC368B1616730155E0041AC447D6301975FECDA
Badhrinath987e1d82020-11-20 13:23:58 -0600248 udr:
249 deploy: true
Hyunsun Moon17354952021-08-21 17:41:26 -0700250 #podAnnotations:
251 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600252 sbi:
253 port: 29504
Hyunsun Moon17354952021-08-21 17:41:26 -0700254 # Provide nodePort when serviceType is NodePort
255 #nodePort: 30074
Hyunsun Moon6a651482021-02-26 01:46:44 -0800256 cfgFiles:
257 # https://github.com/free5gc/free5gc/blob/main/config/udrcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600258 udrcfg.conf:
259 info:
260 version: 1.0.0
261 description: UDR initial local configuration
262 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800263 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600264 sbi:
265 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700266 bindingIPv4: "0.0.0.0"
267 registerIPv4: udr
Badhrinath987e1d82020-11-20 13:23:58 -0600268 pcf:
269 deploy: true
Hyunsun Moon17354952021-08-21 17:41:26 -0700270 #podAnnotations:
271 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600272 sbi:
273 port: 29507
Hyunsun Moon17354952021-08-21 17:41:26 -0700274 # Provide nodePort when serviceType is NodePort
275 #nodePort: 30077
Hyunsun Moon6a651482021-02-26 01:46:44 -0800276 cfgFiles:
277 # https://github.com/free5gc/free5gc/blob/main/config/pcfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600278 pcfcfg.conf:
279 info:
280 version: 1.0.0
Hyunsun Moon6a651482021-02-26 01:46:44 -0800281 description: PCF initial local configuration
Badhrinath987e1d82020-11-20 13:23:58 -0600282 configuration:
283 pcfName: PCF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800284 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600285 sbi:
286 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700287 bindingIPv4: "0.0.0.0"
288 registerIPv4: pcf
Badhrinath987e1d82020-11-20 13:23:58 -0600289 defaultBdtRefId: BdtPolicyId-
Badhrinath987e1d82020-11-20 13:23:58 -0600290 serviceList:
291 - serviceName: npcf-am-policy-control
292 - serviceName: npcf-smpolicycontrol
293 suppFeat: 3fff
294 - serviceName: npcf-bdtpolicycontrol
295 - serviceName: npcf-policyauthorization
296 suppFeat: 3
297 - serviceName: npcf-eventexposure
298 - serviceName: npcf-ue-policy-control
299 nssf:
300 deploy: true
Hyunsun Moon17354952021-08-21 17:41:26 -0700301 #podAnnotations:
302 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600303 sbi:
304 port: 29531
Hyunsun Moon17354952021-08-21 17:41:26 -0700305 # Provide nodePort when serviceType is NodePort
306 #nodePort: 30081
Hyunsun Moon6a651482021-02-26 01:46:44 -0800307 cfgFiles:
308 # https://github.com/free5gc/free5gc/blob/main/config/nssfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600309 nssfcfg.conf:
310 info:
311 version: 1.0.0
312 description: NSSF initial local configuration
313 configuration:
314 nssfName: NSSF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800315 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600316 sbi:
317 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700318 bindingIPv4: "0.0.0.0"
319 registerIPv4: nssf
Badhrinath987e1d82020-11-20 13:23:58 -0600320 serviceNameList:
321 - nnssf-nsselection
322 - nnssf-nssaiavailability
Badhrinath987e1d82020-11-20 13:23:58 -0600323 supportedPlmnList:
324 - mcc: 208
325 mnc: 93
326 supportedNssaiInPlmnList:
327 - plmnId:
328 mcc: 208
329 mnc: 93
330 supportedSnssaiList:
331 - sst: 1
332 sd: "010203"
Badhrinath987e1d82020-11-20 13:23:58 -0600333 nsiList:
334 - snssai:
335 sst: 1
Badhrinath987e1d82020-11-20 13:23:58 -0600336 sd: "010203"
337 nsiInformationList:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800338 - nrfId: http://nrf:29510/nnrf-nfm/v1/nf-instances
Badhrinath987e1d82020-11-20 13:23:58 -0600339 nsiId: 22
Badhrinath987e1d82020-11-20 13:23:58 -0600340 amf:
341 deploy: true
342 podAnnotations:
343 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
Hyunsun Moon17354952021-08-21 17:41:26 -0700344 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600345 prometheus:
346 port: 9089
Hyunsun Moon17354952021-08-21 17:41:26 -0700347 # Provide nodePort when serviceType is NodePort
348 #nodePort: 30084
Badhrinath987e1d82020-11-20 13:23:58 -0600349 sbi:
350 port: 29518
Hyunsun Moon17354952021-08-21 17:41:26 -0700351 #nodePort: 30088
Badhrinath987e1d82020-11-20 13:23:58 -0600352 ngapp:
Hyunsun Moon841690e2021-05-20 19:26:03 -0700353 #externalIp:
Badhrinath987e1d82020-11-20 13:23:58 -0600354 port: 38412
Hyunsun Moon17354952021-08-21 17:41:26 -0700355 #nodePort: 30071
Hyunsun Moon6a651482021-02-26 01:46:44 -0800356 cfgFiles:
357 # https://github.com/free5gc/free5gc/blob/main/config/amfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600358 amfcfg.conf:
359 info:
360 version: 1.0.0
361 description: AMF initial local configuration
362 configuration:
Vijayab2309782021-04-15 22:55:31 +0530363 ngapIpList:
364 - "0.0.0.0"
Badhrinath987e1d82020-11-20 13:23:58 -0600365 amfName: AMF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800366 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600367 sbi:
368 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700369 bindingIPv4: "0.0.0.0"
370 registerIPv4: amf
Badhrinath987e1d82020-11-20 13:23:58 -0600371 serviceNameList:
372 - namf-comm
373 - namf-evts
374 - namf-mt
375 - namf-loc
376 - namf-oam
377 servedGuamiList:
378 - plmnId:
379 mcc: 208
380 mnc: 93
381 amfId: cafe00
382 supportTaiList:
383 - plmnId:
384 mcc: 208
385 mnc: 93
386 tac: 1
387 plmnSupportList:
388 - plmnId:
389 mcc: 208
390 mnc: 93
391 snssaiList:
392 - sst: 1
393 sd: "010203"
Badhrinath987e1d82020-11-20 13:23:58 -0600394 supportDnnList:
395 - internet
Badhrinath987e1d82020-11-20 13:23:58 -0600396 security:
397 integrityOrder:
398 - NIA2
Badhrinath987e1d82020-11-20 13:23:58 -0600399 cipheringOrder:
400 - NEA0
Badhrinath987e1d82020-11-20 13:23:58 -0600401 networkName:
Ajay Lotan Thakur45ea2f92021-06-25 03:07:59 -0500402 full: Aether5G
403 short: Aether
Vijayab2309782021-04-15 22:55:31 +0530404 networkFeatureSupport5GS: # 5gs Network Feature Support IE, refer to TS 24.501
405 enable: true # append this IE in Registration accept or not
406 imsVoPS: 0 # IMS voice over PS session indicator (uinteger, range: 0~1)
407 emc: 0 # Emergency service support indicator for 3GPP access (uinteger, range: 0~3)
408 emf: 0 # Emergency service fallback indicator for 3GPP access (uinteger, range: 0~3)
409 iwkN26: 0 # Interworking without N26 interface indicator (uinteger, range: 0~1)
410 mpsi: 0 # MPS indicator (uinteger, range: 0~1)
411 emcN3: 0 # Emergency service support indicator for Non-3GPP access (uinteger, range: 0~1)
412 mcsi: 0 # MCS indicator (uinteger, range: 0~1)
413 t3502Value: 720 # timer value (seconds) at UE side
414 t3512Value: 3600 # timer value (seconds) at UE side
415 non3gppDeregistrationTimerValue: 3240 # timer value (seconds) at UE side
416 # retransmission timer for paging message
417 t3513:
418 enable: true # true or false
419 expireTime: 6s # default is 6 seconds
420 maxRetryTimes: 4 # the max number of retransmission
421 # retransmission timer for NAS Deregistration Request message
422 t3522:
423 enable: true # true or false
424 expireTime: 6s # default is 6 seconds
425 maxRetryTimes: 4 # the max number of retransmission
426 # retransmission timer for NAS Registration Accept message
427 t3550:
428 enable: true # true or false
429 expireTime: 6s # default is 6 seconds
430 maxRetryTimes: 4 # the max number of retransmission
431 # retransmission timer for NAS Authentication Request/Security Mode Command message
432 t3560:
433 enable: true # true or false
434 expireTime: 6s # default is 6 seconds
435 maxRetryTimes: 4 # the max number of retransmission
436 # retransmission timer for NAS Notification message
437 t3565:
438 enable: true # true or false
439 expireTime: 6s # default is 6 seconds
440 maxRetryTimes: 4 # the max number of retransmission
Badhrinath987e1d82020-11-20 13:23:58 -0600441 nrf:
442 deploy: true
Hyunsun Moon17354952021-08-21 17:41:26 -0700443 #podAnnotations:
444 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600445 sbi:
446 port: 29510
Hyunsun Moon17354952021-08-21 17:41:26 -0700447 # Provide nodePort when serviceType is NodePort
448 #nodePort: 30070
Hyunsun Moon6a651482021-02-26 01:46:44 -0800449 cfgFiles:
450 # https://github.com/free5gc/free5gc/blob/main/config/nrfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600451 nrfcfg.conf:
452 info:
453 version: 1.0.0
454 description: NRF initial local configuration
455 configuration:
Badhrinath987e1d82020-11-20 13:23:58 -0600456 sbi:
457 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700458 bindingIPv4: "0.0.0.0"
459 registerIPv4: nrf
Badhrinath987e1d82020-11-20 13:23:58 -0600460 DefaultPlmnId:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800461 mcc: 208
462 mnc: 93
Badhrinath987e1d82020-11-20 13:23:58 -0600463 serviceNameList:
464 - nnrf-nfm
465 - nnrf-disc
466 smf:
467 deploy: true
468 podAnnotations:
469 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
Hyunsun Moon17354952021-08-21 17:41:26 -0700470 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600471 n4:
472 port: 8805
Hyunsun Moon17354952021-08-21 17:41:26 -0700473 # Provide nodePort when serviceType is NodePort
474 #nodePort: 30021
Badhrinath987e1d82020-11-20 13:23:58 -0600475 prometheus:
476 port: 9089
Hyunsun Moon17354952021-08-21 17:41:26 -0700477 #nodePort: 30084
Badhrinath987e1d82020-11-20 13:23:58 -0600478 sbi:
479 port: 29502
Hyunsun Moon17354952021-08-21 17:41:26 -0700480 #nodePort: 30080
Hyunsun Moon6a651482021-02-26 01:46:44 -0800481 cfgFiles:
482 uerouting.conf:
Badhrinath987e1d82020-11-20 13:23:58 -0600483 info:
484 version: 1.0.0
485 description: Routing information for UE
Hyunsun Moon6a651482021-02-26 01:46:44 -0800486 # https://github.com/free5gc/free5gc/blob/main/config/smfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600487 smfcfg.conf:
488 info:
489 version: 1.0.0
490 description: SMF initial local configuration
491 configuration:
Hyunsun Moon858a1092021-05-25 21:51:56 +0000492 pfcp:
Ajay Lotan Thakurbb187062021-06-08 23:39:26 -0500493 addr: "POD_IP"
Badhrinath987e1d82020-11-20 13:23:58 -0600494 smfName: SMF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800495 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600496 sbi:
497 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700498 bindingIPv4: "0.0.0.0"
499 registerIPv4: smf
Badhrinath987e1d82020-11-20 13:23:58 -0600500 tls:
501 key: gofree5gc/support/TLS/smf.key
502 pem: gofree5gc/support/TLS/smf.pem
503 serviceNameList:
504 - nsmf-pdusession
505 - nsmf-event-exposure
Vijayab2309782021-04-15 22:55:31 +0530506 snssaiInfos:
507 - dnnInfos:
508 - dnn: internet
509 dns: # the IP address of DNS
510 ipv4: 8.8.8.8
511 ipv6: 2001:4860:4860::8888
badhrinath.pa@gmail.comb918a802021-06-16 20:24:17 -0500512 ueSubnet: 172.250.0.0/16 # should be CIDR type
Vijayab2309782021-04-15 22:55:31 +0530513 sNssai:
Badhrinath987e1d82020-11-20 13:23:58 -0600514 sd: "010203"
Vijayab2309782021-04-15 22:55:31 +0530515 sst: 1
Badhrinath987e1d82020-11-20 13:23:58 -0600516 userplane_information:
517 up_nodes:
518 gNB1:
519 type: AN
Hyunsun Moon6a651482021-02-26 01:46:44 -0800520 UPF:
Badhrinath987e1d82020-11-20 13:23:58 -0600521 type: UPF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800522 node_id: upf
Vijayab2309782021-04-15 22:55:31 +0530523 sNssaiUpfInfos: # S-NSSAI information list for this UPF
524 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
525 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
Ajay Lotan Thakur88fea892021-05-24 19:05:18 -0500526 sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
Vijayab2309782021-04-15 22:55:31 +0530527 dnnUpfInfoList: # DNN information list for this S-NSSAI
528 - dnn: internet
529 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
530 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
Ajay Lotan Thakur88fea892021-05-24 19:05:18 -0500531 sd: "112233" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
Vijayab2309782021-04-15 22:55:31 +0530532 dnnUpfInfoList: # DNN information list for this S-NSSAI
533 - dnn: internet
534 interfaces: # Interface list for this UPF
535 - interfaceType: N3 # the type of the interface (N3 or N9)
536 endpoints: # the IP address of this N3/N9 interface on this UPF
537 - upf
538 networkInstance: internet # Data Network Name (DNN)
Hyunsun Moon17354952021-08-21 17:41:26 -0700539
Badhrinath987e1d82020-11-20 13:23:58 -0600540 links:
541 - A: gNB1
Hyunsun Moon6a651482021-02-26 01:46:44 -0800542 B: UPF
Badhrinath987e1d82020-11-20 13:23:58 -0600543 ausf:
544 deploy: true
Hyunsun Moon17354952021-08-21 17:41:26 -0700545 #podAnnotations:
546 serviceType: ClusterIP
Badhrinath987e1d82020-11-20 13:23:58 -0600547 sbi:
548 port: 29509
Hyunsun Moon17354952021-08-21 17:41:26 -0700549 # Provide nodePort when serviceType is NodePort
550 #nodePort: 30082
Hyunsun Moon6a651482021-02-26 01:46:44 -0800551 cfgFiles:
552 # https://github.com/free5gc/free5gc/blob/main/config/ausfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600553 ausfcfg.conf:
554 info:
555 version: 1.0.0
556 description: AUSF initial local configuration
557 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800558 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600559 sbi:
560 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700561 bindingIPv4: "0.0.0.0"
562 registerIPv4: ausf
Badhrinath987e1d82020-11-20 13:23:58 -0600563 serviceNameList:
564 - nausf-auth
Badhrinath987e1d82020-11-20 13:23:58 -0600565 plmnSupportList:
566 - mcc: 208
567 mnc: 93
Badhrinath987e1d82020-11-20 13:23:58 -0600568 groupId: ausfGroup001