blob: 9a2ebd8a3073b701255c509f4953ddd90a64c65b [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:
Hyunsun Moonc73636b2021-03-24 15:47:08 -0700103 useExistingConfigMap: false
Badhrinath987e1d82020-11-20 13:23:58 -0600104 coreDump:
105 enabled: false
106 path: /tmp/coredump
Hyunsun Moon6a651482021-02-26 01:46:44 -0800107 mongodb:
108 name: free5gc
109 url: mongodb://mongodb
badhrinath.pa@gmail.comb918a802021-06-16 20:24:17 -0500110 grpc:
111 golog_verbosity: "99"
112 severity: "info"
113 trace: "all"
114 verbosity: "debug"
Ajay Lotan Thakuref182f42021-05-25 16:41:19 -0500115 logger:
116 # network function
117 AMF:
118 debugLevel: info
119 ReportCaller: false
120 SMF:
121 debugLevel: info
122 ReportCaller: false
123 UDR:
124 debugLevel: info
125 ReportCaller: false
126 UDM:
127 debugLevel: info
128 ReportCaller: false
129 NRF:
130 debugLevel: info
131 ReportCaller: false
132 PCF:
133 debugLevel: info
134 ReportCaller: false
135 AUSF:
136 debugLevel: info
137 ReportCaller: false
138 N3IWF:
139 debugLevel: info
140 ReportCaller: false
141 # library
142 NAS:
143 debugLevel: info
144 ReportCaller: false
145 FSM:
146 debugLevel: info
147 ReportCaller: false
148 NGAP:
149 debugLevel: info
150 ReportCaller: false
151 NamfComm:
152 debugLevel: info
153 ReportCaller: false
154 NamfEventExposure:
155 debugLevel: info
156 ReportCaller: false
157 NsmfPDUSession:
158 debugLevel: info
159 ReportCaller: false
160 NudrDataRepository:
161 debugLevel: info
162 ReportCaller: false
163 OpenApi:
164 debugLevel: info
165 ReportCaller: false
166 Aper:
167 debugLevel: info
168 ReportCaller: false
169 CommonConsumerTest:
170 debugLevel: info
171 ReportCaller: false
172 PFCP:
173 debugLevel: info
174 ReportCaller: false
175 MongoDBLibrary:
176 debugLevel: info
177 ReportCaller: false
178 PathUtil:
179 debugLevel: info
180 ReportCaller: false
181 # webui
182 WEBUI:
183 debugLevel: info
184 ReportCaller: false
Badhrinath987e1d82020-11-20 13:23:58 -0600185 webui:
186 deploy: true
187 podAnnotations:
188 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
189 prometheus:
190 port: 9089
191 nodePort:
192 enabled: false
193 port: 30084
194 urlport:
195 port: 5000
196 nodePort:
197 enabled: false
198 port: 35000
badhrinath.pa@gmail.comb918a802021-06-16 20:24:17 -0500199 grpc:
200 port: 9876
Hyunsun Moon6a651482021-02-26 01:46:44 -0800201 ingress:
202 enabled: false
203 hostname: free5gc.local
204 path: /
205 pathType: Prefix
206 # extraHosts:
207 # - host: free5gc.local
208 # path: /
209 cfgFiles:
210 # https://github.com/free5gc/free5gc/blob/main/config/webuicfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600211 webuicfg.conf:
212 info:
213 version: 1.0.0
214 description: WebUI initial local configuration
Hyunsun Moon6a651482021-02-26 01:46:44 -0800215 configuration: {}
Badhrinath987e1d82020-11-20 13:23:58 -0600216 udm:
217 deploy: true
218 podAnnotations:
219 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
220 prometheus:
221 port: 9089
222 nodePort:
223 enabled: false
224 port: 30084
225 sbi:
226 port: 29503
227 nodePort:
228 enabled: false
229 port: 30074
Hyunsun Moon6a651482021-02-26 01:46:44 -0800230 cfgFiles:
231 # https://github.com/free5gc/free5gc/blob/main/config/udmcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600232 udmcfg.conf:
233 info:
234 version: 1.0.0
235 description: UDM initial local configuration
236 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800237 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600238 serviceNameList:
239 - nudm-sdm
240 - nudm-uecm
241 - nudm-ueau
242 - nudm-ee
243 - nudm-pp
244 sbi:
245 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700246 bindingIPv4: "0.0.0.0"
247 registerIPv4: udm
Badhrinath987e1d82020-11-20 13:23:58 -0600248 tls:
249 log: free5gc/udmsslkey.log
250 pem: free5gc/support/TLS/udm.pem
251 key: free5gc/support/TLS/udm.key
Vijayab2309782021-04-15 22:55:31 +0530252 keys:
253 udmProfileAHNPublicKey: 5a8d38864820197c3394b92613b20b91633cbd897119273bf8e4a6f4eec0a650
254 udmProfileAHNPrivateKey: c53c22208b61860b06c62e5406a7b330c2b577aa5558981510d128247d38bd1d
255 udmProfileBHNPublicKey: 0472DA71976234CE833A6907425867B82E074D44EF907DFB4B3E21C1C2256EBCD15A7DED52FCBB097A4ED250E036C7B9C8C7004C4EEDC4F068CD7BF8D3F900E3B4
256 udmProfileBHNPrivateKey: F1AB1074477EBCC7F554EA1C5FC368B1616730155E0041AC447D6301975FECDA
Badhrinath987e1d82020-11-20 13:23:58 -0600257 udr:
258 deploy: true
259 podAnnotations:
260 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
261 prometheus:
262 port: 9089
263 nodePort:
264 enabled: false
265 port: 30084
266 sbi:
267 port: 29504
268 nodePort:
269 enabled: false
270 port: 30074
Hyunsun Moon6a651482021-02-26 01:46:44 -0800271 cfgFiles:
272 # https://github.com/free5gc/free5gc/blob/main/config/udrcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600273 udrcfg.conf:
274 info:
275 version: 1.0.0
276 description: UDR initial local configuration
277 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800278 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600279 sbi:
280 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700281 bindingIPv4: "0.0.0.0"
282 registerIPv4: udr
Badhrinath987e1d82020-11-20 13:23:58 -0600283 pcf:
284 deploy: true
285 podAnnotations:
286 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
287 prometheus:
288 port: 9089
289 nodePort:
290 enabled: false
291 port: 30084
292 sbi:
293 port: 29507
294 nodePort:
295 enabled: false
296 port: 30077
Hyunsun Moon6a651482021-02-26 01:46:44 -0800297 cfgFiles:
298 # https://github.com/free5gc/free5gc/blob/main/config/pcfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600299 pcfcfg.conf:
300 info:
301 version: 1.0.0
Hyunsun Moon6a651482021-02-26 01:46:44 -0800302 description: PCF initial local configuration
Badhrinath987e1d82020-11-20 13:23:58 -0600303 configuration:
Hyunsun Moon858a1092021-05-25 21:51:56 +0000304 mongodb: # the mongodb connected by this PCF
305 name: free5gc # name of the mongodb
306 url: mongodb://mongodb-arbiter-headless:27017 # a valid URL of the mongodb
Badhrinath987e1d82020-11-20 13:23:58 -0600307 pcfName: PCF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800308 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600309 sbi:
310 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700311 bindingIPv4: "0.0.0.0"
312 registerIPv4: pcf
Badhrinath987e1d82020-11-20 13:23:58 -0600313 defaultBdtRefId: BdtPolicyId-
Badhrinath987e1d82020-11-20 13:23:58 -0600314 serviceList:
315 - serviceName: npcf-am-policy-control
316 - serviceName: npcf-smpolicycontrol
317 suppFeat: 3fff
318 - serviceName: npcf-bdtpolicycontrol
319 - serviceName: npcf-policyauthorization
320 suppFeat: 3
321 - serviceName: npcf-eventexposure
322 - serviceName: npcf-ue-policy-control
323 nssf:
324 deploy: true
325 podAnnotations:
326 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
327 prometheus:
328 port: 9089
329 nodePort:
330 enabled: false
331 port: 30084
332 sbi:
333 port: 29531
334 nodePort:
335 enabled: false
336 port: 30081
Hyunsun Moon6a651482021-02-26 01:46:44 -0800337 cfgFiles:
338 # https://github.com/free5gc/free5gc/blob/main/config/nssfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600339 nssfcfg.conf:
340 info:
341 version: 1.0.0
342 description: NSSF initial local configuration
343 configuration:
344 nssfName: NSSF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800345 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600346 sbi:
347 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700348 bindingIPv4: "0.0.0.0"
349 registerIPv4: nssf
Badhrinath987e1d82020-11-20 13:23:58 -0600350 serviceNameList:
351 - nnssf-nsselection
352 - nnssf-nssaiavailability
Badhrinath987e1d82020-11-20 13:23:58 -0600353 supportedPlmnList:
354 - mcc: 208
355 mnc: 93
356 supportedNssaiInPlmnList:
357 - plmnId:
358 mcc: 208
359 mnc: 93
360 supportedSnssaiList:
361 - sst: 1
362 sd: "010203"
Badhrinath987e1d82020-11-20 13:23:58 -0600363 nsiList:
364 - snssai:
365 sst: 1
Badhrinath987e1d82020-11-20 13:23:58 -0600366 sd: "010203"
367 nsiInformationList:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800368 - nrfId: http://nrf:29510/nnrf-nfm/v1/nf-instances
Badhrinath987e1d82020-11-20 13:23:58 -0600369 nsiId: 22
Badhrinath987e1d82020-11-20 13:23:58 -0600370 amf:
371 deploy: true
372 podAnnotations:
373 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
374 prometheus:
375 port: 9089
376 nodePort:
377 enabled: false
378 port: 30084
379 sbi:
380 port: 29518
381 nodePort:
382 enabled: false
Badhrinath987e1d82020-11-20 13:23:58 -0600383 port: 30088
384 ngapp:
Hyunsun Moon841690e2021-05-20 19:26:03 -0700385 #externalIp:
Badhrinath987e1d82020-11-20 13:23:58 -0600386 port: 38412
387 nodePort:
Pingping Linc119deb2021-03-04 13:21:52 -0800388 enabled: true
Badhrinath987e1d82020-11-20 13:23:58 -0600389 port: 30071
Hyunsun Moon6a651482021-02-26 01:46:44 -0800390 cfgFiles:
391 # https://github.com/free5gc/free5gc/blob/main/config/amfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600392 amfcfg.conf:
393 info:
394 version: 1.0.0
395 description: AMF initial local configuration
396 configuration:
Vijayab2309782021-04-15 22:55:31 +0530397 ngapIpList:
398 - "0.0.0.0"
Badhrinath987e1d82020-11-20 13:23:58 -0600399 amfName: AMF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800400 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600401 sbi:
402 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700403 bindingIPv4: "0.0.0.0"
404 registerIPv4: amf
Badhrinath987e1d82020-11-20 13:23:58 -0600405 serviceNameList:
406 - namf-comm
407 - namf-evts
408 - namf-mt
409 - namf-loc
410 - namf-oam
411 servedGuamiList:
412 - plmnId:
413 mcc: 208
414 mnc: 93
415 amfId: cafe00
416 supportTaiList:
417 - plmnId:
418 mcc: 208
419 mnc: 93
420 tac: 1
421 plmnSupportList:
422 - plmnId:
423 mcc: 208
424 mnc: 93
425 snssaiList:
426 - sst: 1
427 sd: "010203"
Badhrinath987e1d82020-11-20 13:23:58 -0600428 supportDnnList:
429 - internet
Badhrinath987e1d82020-11-20 13:23:58 -0600430 security:
431 integrityOrder:
432 - NIA2
Badhrinath987e1d82020-11-20 13:23:58 -0600433 cipheringOrder:
434 - NEA0
Badhrinath987e1d82020-11-20 13:23:58 -0600435 networkName:
436 full: free5GC
437 short: free
Vijayab2309782021-04-15 22:55:31 +0530438 networkFeatureSupport5GS: # 5gs Network Feature Support IE, refer to TS 24.501
439 enable: true # append this IE in Registration accept or not
440 imsVoPS: 0 # IMS voice over PS session indicator (uinteger, range: 0~1)
441 emc: 0 # Emergency service support indicator for 3GPP access (uinteger, range: 0~3)
442 emf: 0 # Emergency service fallback indicator for 3GPP access (uinteger, range: 0~3)
443 iwkN26: 0 # Interworking without N26 interface indicator (uinteger, range: 0~1)
444 mpsi: 0 # MPS indicator (uinteger, range: 0~1)
445 emcN3: 0 # Emergency service support indicator for Non-3GPP access (uinteger, range: 0~1)
446 mcsi: 0 # MCS indicator (uinteger, range: 0~1)
447 t3502Value: 720 # timer value (seconds) at UE side
448 t3512Value: 3600 # timer value (seconds) at UE side
449 non3gppDeregistrationTimerValue: 3240 # timer value (seconds) at UE side
450 # retransmission timer for paging message
451 t3513:
452 enable: true # true or false
453 expireTime: 6s # default is 6 seconds
454 maxRetryTimes: 4 # the max number of retransmission
455 # retransmission timer for NAS Deregistration Request message
456 t3522:
457 enable: true # true or false
458 expireTime: 6s # default is 6 seconds
459 maxRetryTimes: 4 # the max number of retransmission
460 # retransmission timer for NAS Registration Accept message
461 t3550:
462 enable: true # true or false
463 expireTime: 6s # default is 6 seconds
464 maxRetryTimes: 4 # the max number of retransmission
465 # retransmission timer for NAS Authentication Request/Security Mode Command message
466 t3560:
467 enable: true # true or false
468 expireTime: 6s # default is 6 seconds
469 maxRetryTimes: 4 # the max number of retransmission
470 # retransmission timer for NAS Notification message
471 t3565:
472 enable: true # true or false
473 expireTime: 6s # default is 6 seconds
474 maxRetryTimes: 4 # the max number of retransmission
Badhrinath987e1d82020-11-20 13:23:58 -0600475 nrf:
476 deploy: true
477 podAnnotations:
478 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
479 sbi:
480 port: 29510
481 nodePort:
482 enabled: false
483 port: 30070
Hyunsun Moon6a651482021-02-26 01:46:44 -0800484 cfgFiles:
485 # https://github.com/free5gc/free5gc/blob/main/config/nrfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600486 nrfcfg.conf:
487 info:
488 version: 1.0.0
489 description: NRF initial local configuration
490 configuration:
Badhrinath987e1d82020-11-20 13:23:58 -0600491 sbi:
492 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700493 bindingIPv4: "0.0.0.0"
494 registerIPv4: nrf
Badhrinath987e1d82020-11-20 13:23:58 -0600495 DefaultPlmnId:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800496 mcc: 208
497 mnc: 93
Badhrinath987e1d82020-11-20 13:23:58 -0600498 serviceNameList:
499 - nnrf-nfm
500 - nnrf-disc
501 smf:
502 deploy: true
503 podAnnotations:
504 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
505 n4:
506 port: 8805
507 nodePort:
508 enabled: false
509 port: 30021
510 prometheus:
511 port: 9089
512 nodePort:
513 enabled: false
514 port: 30084
515 sbi:
516 port: 29502
517 nodePort:
518 enabled: false
519 port: 30080
Hyunsun Moon6a651482021-02-26 01:46:44 -0800520 cfgFiles:
521 uerouting.conf:
Badhrinath987e1d82020-11-20 13:23:58 -0600522 info:
523 version: 1.0.0
524 description: Routing information for UE
Hyunsun Moon6a651482021-02-26 01:46:44 -0800525 # https://github.com/free5gc/free5gc/blob/main/config/smfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600526 smfcfg.conf:
527 info:
528 version: 1.0.0
529 description: SMF initial local configuration
530 configuration:
Hyunsun Moon858a1092021-05-25 21:51:56 +0000531 pfcp:
Ajay Lotan Thakurbb187062021-06-08 23:39:26 -0500532 addr: "POD_IP"
Badhrinath987e1d82020-11-20 13:23:58 -0600533 smfName: SMF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800534 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600535 sbi:
536 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700537 bindingIPv4: "0.0.0.0"
538 registerIPv4: smf
Badhrinath987e1d82020-11-20 13:23:58 -0600539 tls:
540 key: gofree5gc/support/TLS/smf.key
541 pem: gofree5gc/support/TLS/smf.pem
542 serviceNameList:
543 - nsmf-pdusession
544 - nsmf-event-exposure
Vijayab2309782021-04-15 22:55:31 +0530545 snssaiInfos:
546 - dnnInfos:
547 - dnn: internet
548 dns: # the IP address of DNS
549 ipv4: 8.8.8.8
550 ipv6: 2001:4860:4860::8888
badhrinath.pa@gmail.comb918a802021-06-16 20:24:17 -0500551 ueSubnet: 172.250.0.0/16 # should be CIDR type
Vijayab2309782021-04-15 22:55:31 +0530552 sNssai:
Badhrinath987e1d82020-11-20 13:23:58 -0600553 sd: "010203"
Vijayab2309782021-04-15 22:55:31 +0530554 sst: 1
Badhrinath987e1d82020-11-20 13:23:58 -0600555 userplane_information:
556 up_nodes:
557 gNB1:
558 type: AN
Hyunsun Moon6a651482021-02-26 01:46:44 -0800559 UPF:
Badhrinath987e1d82020-11-20 13:23:58 -0600560 type: UPF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800561 node_id: upf
Vijayab2309782021-04-15 22:55:31 +0530562 sNssaiUpfInfos: # S-NSSAI information list for this UPF
563 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
564 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
Ajay Lotan Thakur88fea892021-05-24 19:05:18 -0500565 sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
Vijayab2309782021-04-15 22:55:31 +0530566 dnnUpfInfoList: # DNN information list for this S-NSSAI
567 - dnn: internet
568 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
569 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
Ajay Lotan Thakur88fea892021-05-24 19:05:18 -0500570 sd: "112233" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
Vijayab2309782021-04-15 22:55:31 +0530571 dnnUpfInfoList: # DNN information list for this S-NSSAI
572 - dnn: internet
573 interfaces: # Interface list for this UPF
574 - interfaceType: N3 # the type of the interface (N3 or N9)
575 endpoints: # the IP address of this N3/N9 interface on this UPF
576 - upf
577 networkInstance: internet # Data Network Name (DNN)
578
Badhrinath987e1d82020-11-20 13:23:58 -0600579 links:
580 - A: gNB1
Hyunsun Moon6a651482021-02-26 01:46:44 -0800581 B: UPF
Badhrinath987e1d82020-11-20 13:23:58 -0600582 ausf:
583 deploy: true
584 podAnnotations:
585 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
586 prometheus:
587 port: 9089
588 nodePort:
589 enabled: false
590 port: 30084
591 sbi:
592 port: 29509
593 nodePort:
594 enabled: false
595 port: 30082
Hyunsun Moon6a651482021-02-26 01:46:44 -0800596 cfgFiles:
597 # https://github.com/free5gc/free5gc/blob/main/config/ausfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600598 ausfcfg.conf:
599 info:
600 version: 1.0.0
601 description: AUSF initial local configuration
602 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800603 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600604 sbi:
605 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700606 bindingIPv4: "0.0.0.0"
607 registerIPv4: ausf
Badhrinath987e1d82020-11-20 13:23:58 -0600608 serviceNameList:
609 - nausf-auth
Badhrinath987e1d82020-11-20 13:23:58 -0600610 plmnSupportList:
611 - mcc: 208
612 mnc: 93
Badhrinath987e1d82020-11-20 13:23:58 -0600613 groupId: ausfGroup001