blob: 39dd7661249792a66f2d6ebe1959aa3a0ce59c58 [file] [log] [blame]
badhri854c028b32021-11-03 18:24:05 -05001# 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
Vini Gajjaraf6abca2021-11-30 19:37:47 +05308 gnbsim: registry.aetherproject.org/omecproject/5gc-gnbsim:dev-new-gnbsim-37d5cb4
badhri854c028b32021-11-03 18:24:05 -05009 depCheck: quay.io/stackanetes/kubernetes-entrypoint:v0.3.1
10 pullPolicy: IfNotPresent
11 # Secrets must be manually created in the namespace.
12 pullSecrets:
13 - name: aether.registry
14
15nodeSelectors:
16 enabled: false
17 gnbsim:
18 label: omec-cp
19 value: enabled
20
21resources:
22 enabled: true
23 gnbsim:
24 requests:
25 cpu: 2
26 memory: 1Gi
27 limits:
28 cpu: 2
29 memory: 1Gi
30
31config:
32 clusterDomain: cluster.local
33 coreDump:
34 enabled: false
35 path: /tmp/coredump
36 gnbsim:
37 deploy: true
38 sriov:
39 enabled: disabled
40 ipam: static
41 cniPlugin: simpleovs #need override value
42 gnb:
43 ip: 192.168.251.5/24
44 ngapp:
45 port: 38412
46 nodePort:
47 enabled: false
48 port: 30071
49 yamlCfgFiles:
50 gnb.conf: |
51 info:
52 version: 1.0.0
53 description: gNodeB sim initial configuration
54 configuration:
55 gnbs: # pool of gNodeBs
56 gnb1:
57 n2IpAddr: # gNB N2 interface IP address used to connect to AMF
58 n2Port: 9487 # gNB N2 Port used to connect to AMF
59 n3IpAddr: 192.168.251.5 # gNB N3 interface IP address used to connect to UPF
60 n3Port: 2152 # gNB N3 Port used to connect to UPF
61 name: gnb1 # gNB name that uniquely identify a gNB within application
Vini Gajjaraf6abca2021-11-30 19:37:47 +053062 globalRanId:
63 plmnId:
64 mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9)
65 mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9)
66 gNbId:
67 bitLength: 24
68 gNBValue: 000102 # gNB identifier (3 bytes hex string, range: 000000~FFFFFF)
69 supportedTaList:
70 - tac: 000001 # Tracking Area Code (3 bytes hex string, range: 000000~FFFFFF)
71 broadcastPlmnList:
72 - plmnId:
73 mcc: 208
74 mnc: 93
75 taiSliceSupportList:
76 - sst: 1 # Slice/Service Type (uinteger, range: 0~255)
77 sd: 010203 # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
badhri854c028b32021-11-03 18:24:05 -050078 defaultAmf:
79 hostName: amf # Host name of AMF
80 ipAddr: # AMF IP address
81 port: 38412 # AMF port
Vini Gajjaraf6abca2021-11-30 19:37:47 +053082
badhri854c028b32021-11-03 18:24:05 -050083 profiles: # profile information
84 - profileType: register # profile type
85 profileName: profile1 # uniqely identifies a profile within application
86 enable: false # Set true to execute the profile, false otherwise.
87 gnbName: gnb1 # gNB to be used for this profile
88 startImsi: 2089300007487 #First IMSI. Subsequent values will be used if ueCount is mo re than 1
89 ueCount: 5 # Number of UEs for for which the profile will be executed
90 plmnId: # Public Land Mobile Network ID, <PLMN ID> = <MCC><MNC>
91 mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9)
92 mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9)
93 - profileType: pdusessest
94 profileName: profile2
95 enable: true
96 gnbName: gnb1
97 startImsi: 2089300007492
98 ueCount: 5
99 plmnId:
100 mcc: 208
101 mnc: 93
102 dataPktCount: 5 # Number of UL user data packets to be transmitted. Common for all UEs
103 - profileType: deregister
104 profileName: profile3
105 enable: false
106 gnbName: gnb1
107 startImsi: 2089300007497
108 ueCount: 5
109 plmnId:
Vini Gajjaraf6abca2021-11-30 19:37:47 +0530110 mcc: 208
111 mnc: 93
badhri854c028b32021-11-03 18:24:05 -0500112 logger:
113 logLevel: info # how detailed the log will be, values: trace, debug, info, warn, error, fatal, panic