blob: 34b9cf511472fabeddf46ec51271ce8c073ec5ea [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
Hyunsun Moon6a651482021-02-26 01:46:44 -08008 amf: registry.aetherproject.org/omecproject/5gc-amf:onf-master-latest
9 nrf: registry.aetherproject.org/omecproject/5gc-nrf:onf-master-latest
10 smf: registry.aetherproject.org/omecproject/5gc-smf:onf-master-latest
11 ausf: registry.aetherproject.org/omecproject/5gc-ausf:onf-master-latest
12 nssf: registry.aetherproject.org/omecproject/5gc-nssf:onf-master-latest
13 pcf: registry.aetherproject.org/omecproject/5gc-pcf:onf-master-latest
14 udr: registry.aetherproject.org/omecproject/5gc-udr:onf-master-latest
15 udm: registry.aetherproject.org/omecproject/5gc-udm:onf-master-latest
16 webui: registry.aetherproject.org/omecproject/5gc-webui:onf-master-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
110 commonCfgFiles:
111 free5GC.conf:
112 logger:
113 # network function
114 AMF:
115 debugLevel: info
116 ReportCaller: false
117 SMF:
118 debugLevel: info
119 ReportCaller: false
120 UDR:
121 debugLevel: info
122 ReportCaller: false
123 UDM:
124 debugLevel: info
125 ReportCaller: false
126 NRF:
127 debugLevel: info
128 ReportCaller: false
129 PCF:
130 debugLevel: info
131 ReportCaller: false
132 AUSF:
133 debugLevel: info
134 ReportCaller: false
135 N3IWF:
136 debugLevel: info
137 ReportCaller: false
138 # library
139 NAS:
140 debugLevel: info
141 ReportCaller: false
142 FSM:
143 debugLevel: info
144 ReportCaller: false
145 NGAP:
146 debugLevel: info
147 ReportCaller: false
148 NamfComm:
149 debugLevel: info
150 ReportCaller: false
151 NamfEventExposure:
152 debugLevel: info
153 ReportCaller: false
154 NsmfPDUSession:
155 debugLevel: info
156 ReportCaller: false
157 NudrDataRepository:
158 debugLevel: info
159 ReportCaller: false
160 OpenApi:
161 debugLevel: info
162 ReportCaller: false
163 Aper:
164 debugLevel: info
165 ReportCaller: false
166 CommonConsumerTest:
167 debugLevel: info
168 ReportCaller: false
169 # webui
170 WEBUI:
171 debugLevel: info
172 ReportCaller: false
Badhrinath987e1d82020-11-20 13:23:58 -0600173 webui:
174 deploy: true
175 podAnnotations:
176 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
177 prometheus:
178 port: 9089
179 nodePort:
180 enabled: false
181 port: 30084
182 urlport:
183 port: 5000
184 nodePort:
185 enabled: false
186 port: 35000
Hyunsun Moon6a651482021-02-26 01:46:44 -0800187 ingress:
188 enabled: false
189 hostname: free5gc.local
190 path: /
191 pathType: Prefix
192 # extraHosts:
193 # - host: free5gc.local
194 # path: /
195 cfgFiles:
196 # https://github.com/free5gc/free5gc/blob/main/config/webuicfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600197 webuicfg.conf:
198 info:
199 version: 1.0.0
200 description: WebUI initial local configuration
Hyunsun Moon6a651482021-02-26 01:46:44 -0800201 configuration: {}
Badhrinath987e1d82020-11-20 13:23:58 -0600202 udm:
203 deploy: true
204 podAnnotations:
205 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
206 prometheus:
207 port: 9089
208 nodePort:
209 enabled: false
210 port: 30084
211 sbi:
212 port: 29503
213 nodePort:
214 enabled: false
215 port: 30074
Hyunsun Moon6a651482021-02-26 01:46:44 -0800216 cfgFiles:
217 # https://github.com/free5gc/free5gc/blob/main/config/udmcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600218 udmcfg.conf:
219 info:
220 version: 1.0.0
221 description: UDM initial local configuration
222 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800223 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600224 serviceNameList:
225 - nudm-sdm
226 - nudm-uecm
227 - nudm-ueau
228 - nudm-ee
229 - nudm-pp
230 sbi:
231 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700232 bindingIPv4: "0.0.0.0"
233 registerIPv4: udm
Badhrinath987e1d82020-11-20 13:23:58 -0600234 tls:
235 log: free5gc/udmsslkey.log
236 pem: free5gc/support/TLS/udm.pem
237 key: free5gc/support/TLS/udm.key
Vijayab2309782021-04-15 22:55:31 +0530238 keys:
239 udmProfileAHNPublicKey: 5a8d38864820197c3394b92613b20b91633cbd897119273bf8e4a6f4eec0a650
240 udmProfileAHNPrivateKey: c53c22208b61860b06c62e5406a7b330c2b577aa5558981510d128247d38bd1d
241 udmProfileBHNPublicKey: 0472DA71976234CE833A6907425867B82E074D44EF907DFB4B3E21C1C2256EBCD15A7DED52FCBB097A4ED250E036C7B9C8C7004C4EEDC4F068CD7BF8D3F900E3B4
242 udmProfileBHNPrivateKey: F1AB1074477EBCC7F554EA1C5FC368B1616730155E0041AC447D6301975FECDA
Badhrinath987e1d82020-11-20 13:23:58 -0600243 udrclient:
244 scheme: http
Hyunsun Moon6a651482021-02-26 01:46:44 -0800245 ipv4Addr: udr
Badhrinath987e1d82020-11-20 13:23:58 -0600246 port: 29504
247 nrfclient:
248 scheme: http
Hyunsun Moon6a651482021-02-26 01:46:44 -0800249 ipv4Addr: nrf
Badhrinath987e1d82020-11-20 13:23:58 -0600250 port: 29510
Badhrinath987e1d82020-11-20 13:23:58 -0600251 udr:
252 deploy: true
253 podAnnotations:
254 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
255 prometheus:
256 port: 9089
257 nodePort:
258 enabled: false
259 port: 30084
260 sbi:
261 port: 29504
262 nodePort:
263 enabled: false
264 port: 30074
Hyunsun Moon6a651482021-02-26 01:46:44 -0800265 cfgFiles:
266 # https://github.com/free5gc/free5gc/blob/main/config/udrcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600267 udrcfg.conf:
268 info:
269 version: 1.0.0
270 description: UDR initial local configuration
271 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800272 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600273 sbi:
274 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700275 bindingIPv4: "0.0.0.0"
276 registerIPv4: udr
Badhrinath987e1d82020-11-20 13:23:58 -0600277 pcf:
278 deploy: true
279 podAnnotations:
280 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
281 prometheus:
282 port: 9089
283 nodePort:
284 enabled: false
285 port: 30084
286 sbi:
287 port: 29507
288 nodePort:
289 enabled: false
290 port: 30077
Hyunsun Moon6a651482021-02-26 01:46:44 -0800291 cfgFiles:
292 # https://github.com/free5gc/free5gc/blob/main/config/pcfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600293 pcfcfg.conf:
294 info:
295 version: 1.0.0
Hyunsun Moon6a651482021-02-26 01:46:44 -0800296 description: PCF initial local configuration
Badhrinath987e1d82020-11-20 13:23:58 -0600297 configuration:
298 pcfName: PCF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800299 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600300 sbi:
301 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700302 bindingIPv4: "0.0.0.0"
303 registerIPv4: pcf
Badhrinath987e1d82020-11-20 13:23:58 -0600304 defaultBdtRefId: BdtPolicyId-
Badhrinath987e1d82020-11-20 13:23:58 -0600305 serviceList:
306 - serviceName: npcf-am-policy-control
307 - serviceName: npcf-smpolicycontrol
308 suppFeat: 3fff
309 - serviceName: npcf-bdtpolicycontrol
310 - serviceName: npcf-policyauthorization
311 suppFeat: 3
312 - serviceName: npcf-eventexposure
313 - serviceName: npcf-ue-policy-control
314 nssf:
315 deploy: true
316 podAnnotations:
317 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
318 prometheus:
319 port: 9089
320 nodePort:
321 enabled: false
322 port: 30084
323 sbi:
324 port: 29531
325 nodePort:
326 enabled: false
327 port: 30081
Hyunsun Moon6a651482021-02-26 01:46:44 -0800328 cfgFiles:
329 # https://github.com/free5gc/free5gc/blob/main/config/nssfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600330 nssfcfg.conf:
331 info:
332 version: 1.0.0
333 description: NSSF initial local configuration
334 configuration:
335 nssfName: NSSF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800336 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600337 sbi:
338 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700339 bindingIPv4: "0.0.0.0"
340 registerIPv4: nssf
Badhrinath987e1d82020-11-20 13:23:58 -0600341 serviceNameList:
342 - nnssf-nsselection
343 - nnssf-nssaiavailability
Badhrinath987e1d82020-11-20 13:23:58 -0600344 supportedPlmnList:
345 - mcc: 208
346 mnc: 93
347 supportedNssaiInPlmnList:
348 - plmnId:
349 mcc: 208
350 mnc: 93
351 supportedSnssaiList:
352 - sst: 1
353 sd: "010203"
Badhrinath987e1d82020-11-20 13:23:58 -0600354 nsiList:
355 - snssai:
356 sst: 1
Badhrinath987e1d82020-11-20 13:23:58 -0600357 sd: "010203"
358 nsiInformationList:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800359 - nrfId: http://nrf:29510/nnrf-nfm/v1/nf-instances
Badhrinath987e1d82020-11-20 13:23:58 -0600360 nsiId: 22
Badhrinath987e1d82020-11-20 13:23:58 -0600361 amf:
362 deploy: true
363 podAnnotations:
364 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
365 prometheus:
366 port: 9089
367 nodePort:
368 enabled: false
369 port: 30084
370 sbi:
371 port: 29518
372 nodePort:
373 enabled: false
Badhrinath987e1d82020-11-20 13:23:58 -0600374 port: 30088
375 ngapp:
376 port: 38412
377 nodePort:
Pingping Linc119deb2021-03-04 13:21:52 -0800378 enabled: true
Badhrinath987e1d82020-11-20 13:23:58 -0600379 port: 30071
Hyunsun Moon6a651482021-02-26 01:46:44 -0800380 cfgFiles:
381 # https://github.com/free5gc/free5gc/blob/main/config/amfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600382 amfcfg.conf:
383 info:
384 version: 1.0.0
385 description: AMF initial local configuration
386 configuration:
Vijayab2309782021-04-15 22:55:31 +0530387 ngapIpList:
388 - "0.0.0.0"
Badhrinath987e1d82020-11-20 13:23:58 -0600389 amfName: AMF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800390 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600391 sbi:
392 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700393 bindingIPv4: "0.0.0.0"
394 registerIPv4: amf
Badhrinath987e1d82020-11-20 13:23:58 -0600395 serviceNameList:
396 - namf-comm
397 - namf-evts
398 - namf-mt
399 - namf-loc
400 - namf-oam
401 servedGuamiList:
402 - plmnId:
403 mcc: 208
404 mnc: 93
405 amfId: cafe00
406 supportTaiList:
407 - plmnId:
408 mcc: 208
409 mnc: 93
410 tac: 1
411 plmnSupportList:
412 - plmnId:
413 mcc: 208
414 mnc: 93
415 snssaiList:
416 - sst: 1
417 sd: "010203"
Badhrinath987e1d82020-11-20 13:23:58 -0600418 supportDnnList:
419 - internet
Badhrinath987e1d82020-11-20 13:23:58 -0600420 security:
421 integrityOrder:
422 - NIA2
Badhrinath987e1d82020-11-20 13:23:58 -0600423 cipheringOrder:
424 - NEA0
Badhrinath987e1d82020-11-20 13:23:58 -0600425 networkName:
426 full: free5GC
427 short: free
Vijayab2309782021-04-15 22:55:31 +0530428 networkFeatureSupport5GS: # 5gs Network Feature Support IE, refer to TS 24.501
429 enable: true # append this IE in Registration accept or not
430 imsVoPS: 0 # IMS voice over PS session indicator (uinteger, range: 0~1)
431 emc: 0 # Emergency service support indicator for 3GPP access (uinteger, range: 0~3)
432 emf: 0 # Emergency service fallback indicator for 3GPP access (uinteger, range: 0~3)
433 iwkN26: 0 # Interworking without N26 interface indicator (uinteger, range: 0~1)
434 mpsi: 0 # MPS indicator (uinteger, range: 0~1)
435 emcN3: 0 # Emergency service support indicator for Non-3GPP access (uinteger, range: 0~1)
436 mcsi: 0 # MCS indicator (uinteger, range: 0~1)
437 t3502Value: 720 # timer value (seconds) at UE side
438 t3512Value: 3600 # timer value (seconds) at UE side
439 non3gppDeregistrationTimerValue: 3240 # timer value (seconds) at UE side
440 # retransmission timer for paging message
441 t3513:
442 enable: true # true or false
443 expireTime: 6s # default is 6 seconds
444 maxRetryTimes: 4 # the max number of retransmission
445 # retransmission timer for NAS Deregistration Request message
446 t3522:
447 enable: true # true or false
448 expireTime: 6s # default is 6 seconds
449 maxRetryTimes: 4 # the max number of retransmission
450 # retransmission timer for NAS Registration Accept message
451 t3550:
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 Authentication Request/Security Mode Command message
456 t3560:
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 Notification message
461 t3565:
462 enable: true # true or false
463 expireTime: 6s # default is 6 seconds
464 maxRetryTimes: 4 # the max number of retransmission
Badhrinath987e1d82020-11-20 13:23:58 -0600465 nrf:
466 deploy: true
467 podAnnotations:
468 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
469 sbi:
470 port: 29510
471 nodePort:
472 enabled: false
473 port: 30070
Hyunsun Moon6a651482021-02-26 01:46:44 -0800474 cfgFiles:
475 # https://github.com/free5gc/free5gc/blob/main/config/nrfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600476 nrfcfg.conf:
477 info:
478 version: 1.0.0
479 description: NRF initial local configuration
480 configuration:
Badhrinath987e1d82020-11-20 13:23:58 -0600481 sbi:
482 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700483 bindingIPv4: "0.0.0.0"
484 registerIPv4: nrf
Badhrinath987e1d82020-11-20 13:23:58 -0600485 DefaultPlmnId:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800486 mcc: 208
487 mnc: 93
Badhrinath987e1d82020-11-20 13:23:58 -0600488 serviceNameList:
489 - nnrf-nfm
490 - nnrf-disc
491 smf:
492 deploy: true
493 podAnnotations:
494 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
495 n4:
496 port: 8805
497 nodePort:
498 enabled: false
499 port: 30021
500 prometheus:
501 port: 9089
502 nodePort:
503 enabled: false
504 port: 30084
505 sbi:
506 port: 29502
507 nodePort:
508 enabled: false
509 port: 30080
Hyunsun Moon6a651482021-02-26 01:46:44 -0800510 cfgFiles:
511 uerouting.conf:
Badhrinath987e1d82020-11-20 13:23:58 -0600512 info:
513 version: 1.0.0
514 description: Routing information for UE
Hyunsun Moon6a651482021-02-26 01:46:44 -0800515 # https://github.com/free5gc/free5gc/blob/main/config/smfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600516 smfcfg.conf:
517 info:
518 version: 1.0.0
519 description: SMF initial local configuration
520 configuration:
521 smfName: SMF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800522 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600523 sbi:
524 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700525 bindingIPv4: "0.0.0.0"
526 registerIPv4: smf
Badhrinath987e1d82020-11-20 13:23:58 -0600527 tls:
528 key: gofree5gc/support/TLS/smf.key
529 pem: gofree5gc/support/TLS/smf.pem
530 serviceNameList:
531 - nsmf-pdusession
532 - nsmf-event-exposure
Vijayab2309782021-04-15 22:55:31 +0530533 snssaiInfos:
534 - dnnInfos:
535 - dnn: internet
536 dns: # the IP address of DNS
537 ipv4: 8.8.8.8
538 ipv6: 2001:4860:4860::8888
539 ueSubnet: 10.250.0.0/16 # should be CIDR type
540 sNssai:
Badhrinath987e1d82020-11-20 13:23:58 -0600541 sd: "010203"
Vijayab2309782021-04-15 22:55:31 +0530542 sst: 1
Badhrinath987e1d82020-11-20 13:23:58 -0600543 userplane_information:
544 up_nodes:
545 gNB1:
546 type: AN
Hyunsun Moon6a651482021-02-26 01:46:44 -0800547 UPF:
Badhrinath987e1d82020-11-20 13:23:58 -0600548 type: UPF
Hyunsun Moon6a651482021-02-26 01:46:44 -0800549 node_id: upf
Vijayab2309782021-04-15 22:55:31 +0530550 sNssaiUpfInfos: # S-NSSAI information list for this UPF
551 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
552 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
553 sd: 010203 # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
554 dnnUpfInfoList: # DNN information list for this S-NSSAI
555 - dnn: internet
556 - sNssai: # S-NSSAI (Single Network Slice Selection Assistance Information)
557 sst: 1 # Slice/Service Type (uinteger, range: 0~255)
558 sd: 112233 # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
559 dnnUpfInfoList: # DNN information list for this S-NSSAI
560 - dnn: internet
561 interfaces: # Interface list for this UPF
562 - interfaceType: N3 # the type of the interface (N3 or N9)
563 endpoints: # the IP address of this N3/N9 interface on this UPF
564 - upf
565 networkInstance: internet # Data Network Name (DNN)
566
Badhrinath987e1d82020-11-20 13:23:58 -0600567 links:
568 - A: gNB1
Hyunsun Moon6a651482021-02-26 01:46:44 -0800569 B: UPF
Badhrinath987e1d82020-11-20 13:23:58 -0600570 ausf:
571 deploy: true
572 podAnnotations:
573 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9089,"schema":"HTTP"}]'
574 prometheus:
575 port: 9089
576 nodePort:
577 enabled: false
578 port: 30084
579 sbi:
580 port: 29509
581 nodePort:
582 enabled: false
583 port: 30082
Hyunsun Moon6a651482021-02-26 01:46:44 -0800584 cfgFiles:
585 # https://github.com/free5gc/free5gc/blob/main/config/ausfcfg.yaml
Badhrinath987e1d82020-11-20 13:23:58 -0600586 ausfcfg.conf:
587 info:
588 version: 1.0.0
589 description: AUSF initial local configuration
590 configuration:
Hyunsun Moon6a651482021-02-26 01:46:44 -0800591 nrfUri: http://nrf:29510
Badhrinath987e1d82020-11-20 13:23:58 -0600592 sbi:
593 scheme: http
rootd623d5b2021-03-11 09:06:34 -0700594 bindingIPv4: "0.0.0.0"
595 registerIPv4: ausf
Badhrinath987e1d82020-11-20 13:23:58 -0600596 serviceNameList:
597 - nausf-auth
Badhrinath987e1d82020-11-20 13:23:58 -0600598 plmnSupportList:
599 - mcc: 208
600 mnc: 93
Badhrinath987e1d82020-11-20 13:23:58 -0600601 groupId: ausfGroup001