blob: afd45348230093329021f35ede2afe5bbd7da969 [file] [log] [blame]
badhri854c028b32021-11-03 18:24:05 -05001# Copyright 2020-present Open Networking Foundation
2#
Ajay Lotan Thakur03189d22022-02-10 14:06:03 -06003# SPDX-License-Identifier: Apache-2.0
badhri854c028b32021-11-03 18:24:05 -05004
5images:
Ajay Lotan Thakur71115fe2022-03-03 22:26:08 -07006 repository: "" #default docker hub
badhri854c028b32021-11-03 18:24:05 -05007 tags:
Ajay Lotan Thakur71115fe2022-03-03 22:26:08 -07008 init: omecproject/pod-init:1.0.0
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -06009 gnbsim: omecproject/5gc-gnbsim:main-0e4b557
badhri854c028b32021-11-03 18:24:05 -050010 pullPolicy: IfNotPresent
badhri854c028b32021-11-03 18:24:05 -050011
12nodeSelectors:
13 enabled: false
14 gnbsim:
15 label: omec-cp
16 value: enabled
17
18resources:
19 enabled: true
20 gnbsim:
21 requests:
22 cpu: 2
23 memory: 1Gi
24 limits:
25 cpu: 2
26 memory: 1Gi
27
28config:
Ajay Lotan Thakur0203c3b2022-03-21 13:40:11 -060029 useExistingConfigMap: false
badhri854c028b32021-11-03 18:24:05 -050030 clusterDomain: cluster.local
31 coreDump:
32 enabled: false
33 path: /tmp/coredump
34 gnbsim:
35 deploy: true
Badhrinath Padmanabhanb8f42912022-11-16 13:58:04 -050036 nonStandalone: true
Ajay Lotan Thakur82c4bec2022-09-02 13:51:45 -060037 serviceType: ClusterIP
Hyunsun Moon2b21eb42022-03-24 01:52:22 -060038 networkTopo:
39 - upfAddr: "192.168.252.3/32"
40 upfGw: "192.168.251.1"
badhri854c028b32021-11-03 18:24:05 -050041 sriov:
42 enabled: disabled
Hyunsun Moon2b21eb42022-03-24 01:52:22 -060043 resourceName: "intel.com/intel_sriov_vfio"
badhri854c028b32021-11-03 18:24:05 -050044 ipam: static
Hyunsun Moon2b21eb42022-03-24 01:52:22 -060045 cniPlugin: macvlan # supported CNIs: sriov, macvlan, host-device
46 iface: data # master in macvlan or device in host-device
badhri854c028b32021-11-03 18:24:05 -050047 gnb:
Vijaya Tiruveedula56f595f2022-10-27 05:28:50 -060048 ips:
49 - '"192.168.251.5/24"' #user plane IP at gnb if 2 separate interface provided
50 - '"192.168.251.6/32"' #user plane IP at gnb if 2 separate interface provided
Ajay Lotan Thakur82c4bec2022-09-02 13:51:45 -060051 httpServer:
Ajay Lotan Thakur75ef3b82022-09-02 20:35:59 -060052 enable: false
Ajay Lotan Thakur82c4bec2022-09-02 13:51:45 -060053 ipAddr: "POD_IP"
54 port: 6000
Ajay Lotan Thakureadf7702022-09-30 00:02:58 -060055 goProfile:
Ajay Lotan Thakur484545b2022-02-28 14:39:16 -060056 enable: true
57 port: 5000
badhri854c028b32021-11-03 18:24:05 -050058 ngapp:
59 port: 38412
60 nodePort:
61 enabled: false
62 port: 30071
63 yamlCfgFiles:
Ajay Lotan Thakurb9b6ed32022-03-02 00:17:19 -060064 gnb.conf:
badhri854c028b32021-11-03 18:24:05 -050065 info:
66 version: 1.0.0
67 description: gNodeB sim initial configuration
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -060068 logger:
69 logLevel: info # how detailed the log will be, values: trace, debug, info, warn, error, fatal, panic
badhri854c028b32021-11-03 18:24:05 -050070 configuration:
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -060071 singleInterface: #this will be added thorugh configmap script
72 execInParallel: false #run all profiles in parallel
badhri854c028b32021-11-03 18:24:05 -050073 gnbs: # pool of gNodeBs
74 gnb1:
Vijaya Tiruveedula56f595f2022-10-27 05:28:50 -060075 n2IpAddr: # gNB N2 interface IP address used to connect to AMF
badhri854c028b32021-11-03 18:24:05 -050076 n2Port: 9487 # gNB N2 Port used to connect to AMF
77 n3IpAddr: 192.168.251.5 # gNB N3 interface IP address used to connect to UPF
78 n3Port: 2152 # gNB N3 Port used to connect to UPF
79 name: gnb1 # gNB name that uniquely identify a gNB within application
Vini Gajjaraf6abca2021-11-30 19:37:47 +053080 globalRanId:
81 plmnId:
82 mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9)
83 mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9)
Vijaya Tiruveedula56f595f2022-10-27 05:28:50 -060084 gNbId:
Vini Gajjaraf6abca2021-11-30 19:37:47 +053085 bitLength: 24
Ajay Lotan Thakurb9b6ed32022-03-02 00:17:19 -060086 gNBValue: "000102" # gNB identifier (3 bytes hex string, range: 000000~FFFFFF)
Vini Gajjaraf6abca2021-11-30 19:37:47 +053087 supportedTaList:
Ajay Lotan Thakurb9b6ed32022-03-02 00:17:19 -060088 - tac: "000001" # Tracking Area Code (3 bytes hex string, range: 000000~FFFFFF)
Vini Gajjaraf6abca2021-11-30 19:37:47 +053089 broadcastPlmnList:
90 - plmnId:
Vijaya Tiruveedula56f595f2022-10-27 05:28:50 -060091 mcc: 208
Vini Gajjaraf6abca2021-11-30 19:37:47 +053092 mnc: 93
93 taiSliceSupportList:
94 - sst: 1 # Slice/Service Type (uinteger, range: 0~255)
Ajay Lotan Thakurb9b6ed32022-03-02 00:17:19 -060095 sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
badhri854c028b32021-11-03 18:24:05 -050096 defaultAmf:
97 hostName: amf # Host name of AMF
98 ipAddr: # AMF IP address
99 port: 38412 # AMF port
Vijaya Tiruveedula56f595f2022-10-27 05:28:50 -0600100 gnb2:
101 n2IpAddr: # gNB N2 interface IP address used to connect to AMF
102 n2Port: 9488 # gNB N2 Port used to connect to AMF
103 n3IpAddr: 192.168.251.6 # gNB N3 interface IP address used to connect to UPF
104 n3Port: 2152 # gNB N3 Port used to connect to UPF
105 name: gnb2 # gNB name that uniquely identify a gNB within application
106 globalRanId:
107 plmnId:
108 mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9)
109 mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9)
110 gNbId:
111 bitLength: 24
112 gNBValue: "000112" # gNB identifier (3 bytes hex string, range: 000000~FFFFFF)
113 supportedTaList:
114 - tac: "000001" # Tracking Area Code (3 bytes hex string, range: 000000~FFFFFF)
115 broadcastPlmnList:
116 - plmnId:
117 mcc: 208
118 mnc: 93
119 taiSliceSupportList:
120 - sst: 1 # Slice/Service Type (uinteger, range: 0~255)
121 sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF)
122 defaultAmf:
123 hostName: amf # Host name of AMF
124 ipAddr: # AMF IP address
125 port: 38412 # AMF port
badhri854c028b32021-11-03 18:24:05 -0500126 profiles: # profile information
127 - profileType: register # profile type
128 profileName: profile1 # uniqely identifies a profile within application
129 enable: false # Set true to execute the profile, false otherwise.
130 gnbName: gnb1 # gNB to be used for this profile
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -0600131 execInParallel: false #run all subscribers in this profile parallel
132 stepTrigger: false #wait for trigger to move to next step
Ajay Lotan Thakurb9b6ed32022-03-02 00:17:19 -0600133 startImsi: 208930100007487 #First IMSI. Subsequent values will be used if ueCount is mo re than 1
badhri854c028b32021-11-03 18:24:05 -0500134 ueCount: 5 # Number of UEs for for which the profile will be executed
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600135 defaultAs: "192.168.250.1" #default icmp pkt destination
Ajay Lotan Thakureb879c42022-06-09 17:37:24 -0600136 opc: "981d464c7c52eb6e5036234984ad0bcf"
137 key: "5122250214c33e723a5dd523fc145fc0"
badhri854c028b32021-11-03 18:24:05 -0500138 plmnId: # Public Land Mobile Network ID, <PLMN ID> = <MCC><MNC>
139 mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9)
140 mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9)
141 - profileType: pdusessest
142 profileName: profile2
143 enable: true
144 gnbName: gnb1
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -0600145 execInParallel: false #run all subscribers in this profile parallel
146 stepTrigger: false #wait for trigger to move to next step
Ajay Lotan Thakurb9b6ed32022-03-02 00:17:19 -0600147 startImsi: 208930100007492
badhri854c028b32021-11-03 18:24:05 -0500148 ueCount: 5
Ajay Lotan Thakureb879c42022-06-09 17:37:24 -0600149 opc: "981d464c7c52eb6e5036234984ad0bcf"
150 key: "5122250214c33e723a5dd523fc145fc0"
badhri854c028b32021-11-03 18:24:05 -0500151 plmnId:
152 mcc: 208
153 mnc: 93
154 dataPktCount: 5 # Number of UL user data packets to be transmitted. Common for all UEs
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600155 defaultAs: "192.168.250.1" #default icmp pkt destination
Vini Gajjar6cd5c622021-12-17 09:43:40 +0530156 - profileType: anrelease
badhri854c028b32021-11-03 18:24:05 -0500157 profileName: profile3
158 enable: false
159 gnbName: gnb1
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -0600160 execInParallel: false #run all subscribers in this profile parallel
161 stepTrigger: false #wait for trigger to move to next step
Ajay Lotan Thakurb9b6ed32022-03-02 00:17:19 -0600162 startImsi: 208930100007497
badhri854c028b32021-11-03 18:24:05 -0500163 ueCount: 5
Ajay Lotan Thakureb879c42022-06-09 17:37:24 -0600164 opc: "981d464c7c52eb6e5036234984ad0bcf"
165 key: "5122250214c33e723a5dd523fc145fc0"
badhri854c028b32021-11-03 18:24:05 -0500166 plmnId:
Vini Gajjaraf6abca2021-11-30 19:37:47 +0530167 mcc: 208
168 mnc: 93
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600169 defaultAs: "192.168.250.1" #default icmp pkt destination
Vini Gajjar4dff76a2022-01-24 10:29:29 +0000170 - profileType: uetriggservicereq
171 profileName: profile4
172 enable: false
173 gnbName: gnb1
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -0600174 execInParallel: false #run all subscribers in this profile parallel
175 stepTrigger: false #wait for trigger to move to next step
Vini Gajjar4dff76a2022-01-24 10:29:29 +0000176 startImsi: 208930100007497
177 ueCount: 5
Ajay Lotan Thakureb879c42022-06-09 17:37:24 -0600178 opc: "981d464c7c52eb6e5036234984ad0bcf"
179 key: "5122250214c33e723a5dd523fc145fc0"
Vini Gajjar4dff76a2022-01-24 10:29:29 +0000180 plmnId:
181 mcc: 208
182 mnc: 93
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600183 defaultAs: "192.168.250.1" #default icmp pkt destination
Vini Gajjar6cd5c622021-12-17 09:43:40 +0530184 - profileType: deregister
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600185 profileName: profile5
Vini Gajjar6cd5c622021-12-17 09:43:40 +0530186 enable: false
187 gnbName: gnb1
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -0600188 execInParallel: false #run all subscribers in this profile parallel
189 stepTrigger: false #wait for trigger to move to next step
Ajay Lotan Thakurb9b6ed32022-03-02 00:17:19 -0600190 startImsi: 208930100007497
Vini Gajjar6cd5c622021-12-17 09:43:40 +0530191 ueCount: 5
Ajay Lotan Thakureb879c42022-06-09 17:37:24 -0600192 opc: "981d464c7c52eb6e5036234984ad0bcf"
193 key: "5122250214c33e723a5dd523fc145fc0"
Vini Gajjar6cd5c622021-12-17 09:43:40 +0530194 plmnId:
195 mcc: 208
196 mnc: 93
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600197 defaultAs: "192.168.250.1" #default icmp pkt destination
198 - profileType: nwtriggeruedereg # profile type
199 profileName: profile6 # uniqely identifies a profile within application
200 enable: false # Set true to execute the profile, false otherwise.
201 gnbName: gnb1 # gNB to be used for this profile
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -0600202 execInParallel: false #run all subscribers in this profile parallel
203 stepTrigger: false #wait for trigger to move to next step
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600204 startImsi: 208930100007497 # First IMSI. Subsequent values will be used if ueCount is more than 1
205 ueCount: 5 # Number of UEs for for which the profile will be executed
206 defaultAs: "192.168.250.1" #default icmp pkt destination
207 perUserTimeout: 100 #if no expected event received in this time then treat it as failure
Ajay Lotan Thakureb879c42022-06-09 17:37:24 -0600208 opc: "981d464c7c52eb6e5036234984ad0bcf"
209 key: "5122250214c33e723a5dd523fc145fc0"
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600210 plmnId: # Public Land Mobile Network ID, <PLMN ID> = <MCC><MNC>. Should match startImsi
211 mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9)
212 mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9)
213 - profileType: uereqpdusessrelease # profile type
214 profileName: profile7 # uniqely identifies a profile within application
215 enable: false # Set true to execute the profile, false otherwise.
216 gnbName: gnb1 # gNB to be used for this profile
Ajay Lotan Thakur25c27622022-10-06 15:22:45 -0600217 execInParallel: false #run all subscribers in this profile parallel
218 stepTrigger: false #wait for trigger to move to next step
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600219 startImsi: 208930100007497 # First IMSI. Subsequent values will be used if ueCount is more than 1
220 ueCount: 5 # Number of UEs for for which the profile will be executed
Ajay Lotan Thakureb879c42022-06-09 17:37:24 -0600221 opc: "981d464c7c52eb6e5036234984ad0bcf"
222 key: "5122250214c33e723a5dd523fc145fc0"
Ajay Lotan Thakur84ddbea2022-03-21 16:07:16 -0600223 plmnId: # Public Land Mobile Network ID, <PLMN ID> = <MCC><MNC>. Should match startImsi
224 mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9)
225 mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9)
226 defaultAs: "192.168.250.1" #default icmp pkt destination
Vijaya Tiruveedula56f595f2022-10-27 05:28:50 -0600227 - profileType: pdusessest
228 profileName: profile8
229 enable: true
230 gnbName: gnb2
231 execInParallel: false #run all subscribers in this profile parallel
232 stepTrigger: false #wait for trigger to move to next step
233 startImsi: 208930100007501
234 ueCount: 5
235 opc: "981d464c7c52eb6e5036234984ad0bcf"
236 key: "5122250214c33e723a5dd523fc145fc0"
237 plmnId:
238 mcc: 208
239 mnc: 93
240 dataPktCount: 5 # Number of UL user data packets to be transmitted. Common for all UEs
241 defaultAs: "192.168.250.1" #default icmp pkt destination