badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 1 | # Copyright 2020-present Open Networking Foundation |
| 2 | # |
Ajay Lotan Thakur | 03189d2 | 2022-02-10 14:06:03 -0600 | [diff] [blame] | 3 | # SPDX-License-Identifier: Apache-2.0 |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 4 | |
| 5 | images: |
Ajay Lotan Thakur | 71115fe | 2022-03-03 22:26:08 -0700 | [diff] [blame] | 6 | repository: "" #default docker hub |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 7 | tags: |
Ajay Lotan Thakur | 71115fe | 2022-03-03 22:26:08 -0700 | [diff] [blame] | 8 | init: omecproject/pod-init:1.0.0 |
Ankur Upadhyaya | 22556c7 | 2022-12-02 04:29:26 -0700 | [diff] [blame] | 9 | gnbsim: omecproject/5gc-gnbsim:main-1caccfc |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 10 | pullPolicy: IfNotPresent |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 11 | |
| 12 | nodeSelectors: |
| 13 | enabled: false |
| 14 | gnbsim: |
| 15 | label: omec-cp |
| 16 | value: enabled |
| 17 | |
| 18 | resources: |
| 19 | enabled: true |
| 20 | gnbsim: |
| 21 | requests: |
| 22 | cpu: 2 |
| 23 | memory: 1Gi |
| 24 | limits: |
| 25 | cpu: 2 |
| 26 | memory: 1Gi |
| 27 | |
| 28 | config: |
Ajay Lotan Thakur | 0203c3b | 2022-03-21 13:40:11 -0600 | [diff] [blame] | 29 | useExistingConfigMap: false |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 30 | clusterDomain: cluster.local |
| 31 | coreDump: |
| 32 | enabled: false |
| 33 | path: /tmp/coredump |
| 34 | gnbsim: |
| 35 | deploy: true |
Badhrinath Padmanabhan | a0c93b7 | 2022-11-21 21:53:00 -0600 | [diff] [blame] | 36 | waitForAmf: true |
Ajay Lotan Thakur | 82c4bec | 2022-09-02 13:51:45 -0600 | [diff] [blame] | 37 | serviceType: ClusterIP |
Badhrinath Padmanabhan | a0c93b7 | 2022-11-21 21:53:00 -0600 | [diff] [blame] | 38 | # serviceAnnotations: |
| 39 | # external-dns.alpha.kubernetes.io/hostname: "gnbsim.tenant-site.company.com" |
Hyunsun Moon | 2b21eb4 | 2022-03-24 01:52:22 -0600 | [diff] [blame] | 40 | networkTopo: |
| 41 | - upfAddr: "192.168.252.3/32" |
| 42 | upfGw: "192.168.251.1" |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 43 | sriov: |
Badhrinath Padmanabhan | a0c93b7 | 2022-11-21 21:53:00 -0600 | [diff] [blame] | 44 | enabled: false |
Hyunsun Moon | 2b21eb4 | 2022-03-24 01:52:22 -0600 | [diff] [blame] | 45 | resourceName: "intel.com/intel_sriov_vfio" |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 46 | ipam: static |
Hyunsun Moon | 2b21eb4 | 2022-03-24 01:52:22 -0600 | [diff] [blame] | 47 | cniPlugin: macvlan # supported CNIs: sriov, macvlan, host-device |
| 48 | iface: data # master in macvlan or device in host-device |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 49 | gnb: |
Badhrinath Padmanabhan | a0c93b7 | 2022-11-21 21:53:00 -0600 | [diff] [blame] | 50 | ips: |
Vijaya Tiruveedula | 56f595f | 2022-10-27 05:28:50 -0600 | [diff] [blame] | 51 | - '"192.168.251.5/24"' #user plane IP at gnb if 2 separate interface provided |
| 52 | - '"192.168.251.6/32"' #user plane IP at gnb if 2 separate interface provided |
Ajay Lotan Thakur | 82c4bec | 2022-09-02 13:51:45 -0600 | [diff] [blame] | 53 | httpServer: |
Ajay Lotan Thakur | 75ef3b8 | 2022-09-02 20:35:59 -0600 | [diff] [blame] | 54 | enable: false |
Ajay Lotan Thakur | 82c4bec | 2022-09-02 13:51:45 -0600 | [diff] [blame] | 55 | ipAddr: "POD_IP" |
| 56 | port: 6000 |
Badhrinath Padmanabhan | a0c93b7 | 2022-11-21 21:53:00 -0600 | [diff] [blame] | 57 | nodePort: |
| 58 | enabled: false |
| 59 | port: 30091 |
Ajay Lotan Thakur | eadf770 | 2022-09-30 00:02:58 -0600 | [diff] [blame] | 60 | goProfile: |
Ajay Lotan Thakur | 484545b | 2022-02-28 14:39:16 -0600 | [diff] [blame] | 61 | enable: true |
| 62 | port: 5000 |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 63 | ngapp: |
| 64 | port: 38412 |
| 65 | nodePort: |
| 66 | enabled: false |
| 67 | port: 30071 |
| 68 | yamlCfgFiles: |
Ajay Lotan Thakur | b9b6ed3 | 2022-03-02 00:17:19 -0600 | [diff] [blame] | 69 | gnb.conf: |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 70 | info: |
| 71 | version: 1.0.0 |
| 72 | description: gNodeB sim initial configuration |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 73 | logger: |
| 74 | logLevel: info # how detailed the log will be, values: trace, debug, info, warn, error, fatal, panic |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 75 | configuration: |
Badhrinath Padmanabhan | 2354db5 | 2022-11-23 18:24:10 -0600 | [diff] [blame] | 76 | runConfigProfilesAtStart: true |
Ajay Lotan Thakur | 25c2762 | 2022-10-06 15:22:45 -0600 | [diff] [blame] | 77 | singleInterface: #this will be added thorugh configmap script |
| 78 | execInParallel: false #run all profiles in parallel |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 79 | gnbs: # pool of gNodeBs |
| 80 | gnb1: |
Vijaya Tiruveedula | 56f595f | 2022-10-27 05:28:50 -0600 | [diff] [blame] | 81 | n2IpAddr: # gNB N2 interface IP address used to connect to AMF |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 82 | n2Port: 9487 # gNB N2 Port used to connect to AMF |
| 83 | n3IpAddr: 192.168.251.5 # gNB N3 interface IP address used to connect to UPF |
| 84 | n3Port: 2152 # gNB N3 Port used to connect to UPF |
| 85 | name: gnb1 # gNB name that uniquely identify a gNB within application |
Vini Gajjar | af6abca | 2021-11-30 19:37:47 +0530 | [diff] [blame] | 86 | globalRanId: |
| 87 | plmnId: |
| 88 | mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9) |
| 89 | mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9) |
Vijaya Tiruveedula | 56f595f | 2022-10-27 05:28:50 -0600 | [diff] [blame] | 90 | gNbId: |
Vini Gajjar | af6abca | 2021-11-30 19:37:47 +0530 | [diff] [blame] | 91 | bitLength: 24 |
Ajay Lotan Thakur | b9b6ed3 | 2022-03-02 00:17:19 -0600 | [diff] [blame] | 92 | gNBValue: "000102" # gNB identifier (3 bytes hex string, range: 000000~FFFFFF) |
Vini Gajjar | af6abca | 2021-11-30 19:37:47 +0530 | [diff] [blame] | 93 | supportedTaList: |
Ajay Lotan Thakur | b9b6ed3 | 2022-03-02 00:17:19 -0600 | [diff] [blame] | 94 | - tac: "000001" # Tracking Area Code (3 bytes hex string, range: 000000~FFFFFF) |
Vini Gajjar | af6abca | 2021-11-30 19:37:47 +0530 | [diff] [blame] | 95 | broadcastPlmnList: |
| 96 | - plmnId: |
Vijaya Tiruveedula | 56f595f | 2022-10-27 05:28:50 -0600 | [diff] [blame] | 97 | mcc: 208 |
Vini Gajjar | af6abca | 2021-11-30 19:37:47 +0530 | [diff] [blame] | 98 | mnc: 93 |
| 99 | taiSliceSupportList: |
| 100 | - sst: 1 # Slice/Service Type (uinteger, range: 0~255) |
Ajay Lotan Thakur | b9b6ed3 | 2022-03-02 00:17:19 -0600 | [diff] [blame] | 101 | sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF) |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 102 | defaultAmf: |
| 103 | hostName: amf # Host name of AMF |
| 104 | ipAddr: # AMF IP address |
| 105 | port: 38412 # AMF port |
Vijaya Tiruveedula | 56f595f | 2022-10-27 05:28:50 -0600 | [diff] [blame] | 106 | gnb2: |
| 107 | n2IpAddr: # gNB N2 interface IP address used to connect to AMF |
| 108 | n2Port: 9488 # gNB N2 Port used to connect to AMF |
| 109 | n3IpAddr: 192.168.251.6 # gNB N3 interface IP address used to connect to UPF |
| 110 | n3Port: 2152 # gNB N3 Port used to connect to UPF |
| 111 | name: gnb2 # gNB name that uniquely identify a gNB within application |
| 112 | globalRanId: |
| 113 | plmnId: |
| 114 | mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9) |
| 115 | mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9) |
| 116 | gNbId: |
| 117 | bitLength: 24 |
| 118 | gNBValue: "000112" # gNB identifier (3 bytes hex string, range: 000000~FFFFFF) |
| 119 | supportedTaList: |
| 120 | - tac: "000001" # Tracking Area Code (3 bytes hex string, range: 000000~FFFFFF) |
| 121 | broadcastPlmnList: |
| 122 | - plmnId: |
| 123 | mcc: 208 |
| 124 | mnc: 93 |
| 125 | taiSliceSupportList: |
| 126 | - sst: 1 # Slice/Service Type (uinteger, range: 0~255) |
| 127 | sd: "010203" # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF) |
| 128 | defaultAmf: |
| 129 | hostName: amf # Host name of AMF |
| 130 | ipAddr: # AMF IP address |
| 131 | port: 38412 # AMF port |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 132 | profiles: # profile information |
| 133 | - profileType: register # profile type |
| 134 | profileName: profile1 # uniqely identifies a profile within application |
| 135 | enable: false # Set true to execute the profile, false otherwise. |
| 136 | gnbName: gnb1 # gNB to be used for this profile |
Ajay Lotan Thakur | 25c2762 | 2022-10-06 15:22:45 -0600 | [diff] [blame] | 137 | execInParallel: false #run all subscribers in this profile parallel |
| 138 | stepTrigger: false #wait for trigger to move to next step |
Ajay Lotan Thakur | b9b6ed3 | 2022-03-02 00:17:19 -0600 | [diff] [blame] | 139 | startImsi: 208930100007487 #First IMSI. Subsequent values will be used if ueCount is mo re than 1 |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 140 | ueCount: 5 # Number of UEs for for which the profile will be executed |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 141 | defaultAs: "192.168.250.1" #default icmp pkt destination |
Ajay Lotan Thakur | eb879c4 | 2022-06-09 17:37:24 -0600 | [diff] [blame] | 142 | opc: "981d464c7c52eb6e5036234984ad0bcf" |
| 143 | key: "5122250214c33e723a5dd523fc145fc0" |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 144 | plmnId: # Public Land Mobile Network ID, <PLMN ID> = <MCC><MNC> |
| 145 | mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9) |
| 146 | mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9) |
| 147 | - profileType: pdusessest |
| 148 | profileName: profile2 |
| 149 | enable: true |
| 150 | gnbName: gnb1 |
Ajay Lotan Thakur | 25c2762 | 2022-10-06 15:22:45 -0600 | [diff] [blame] | 151 | execInParallel: false #run all subscribers in this profile parallel |
| 152 | stepTrigger: false #wait for trigger to move to next step |
Ajay Lotan Thakur | b9b6ed3 | 2022-03-02 00:17:19 -0600 | [diff] [blame] | 153 | startImsi: 208930100007492 |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 154 | ueCount: 5 |
Ajay Lotan Thakur | eb879c4 | 2022-06-09 17:37:24 -0600 | [diff] [blame] | 155 | opc: "981d464c7c52eb6e5036234984ad0bcf" |
| 156 | key: "5122250214c33e723a5dd523fc145fc0" |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 157 | plmnId: |
| 158 | mcc: 208 |
| 159 | mnc: 93 |
| 160 | dataPktCount: 5 # Number of UL user data packets to be transmitted. Common for all UEs |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 161 | defaultAs: "192.168.250.1" #default icmp pkt destination |
Vini Gajjar | 6cd5c62 | 2021-12-17 09:43:40 +0530 | [diff] [blame] | 162 | - profileType: anrelease |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 163 | profileName: profile3 |
| 164 | enable: false |
| 165 | gnbName: gnb1 |
Ajay Lotan Thakur | 25c2762 | 2022-10-06 15:22:45 -0600 | [diff] [blame] | 166 | execInParallel: false #run all subscribers in this profile parallel |
| 167 | stepTrigger: false #wait for trigger to move to next step |
Ajay Lotan Thakur | b9b6ed3 | 2022-03-02 00:17:19 -0600 | [diff] [blame] | 168 | startImsi: 208930100007497 |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 169 | ueCount: 5 |
Ajay Lotan Thakur | eb879c4 | 2022-06-09 17:37:24 -0600 | [diff] [blame] | 170 | opc: "981d464c7c52eb6e5036234984ad0bcf" |
| 171 | key: "5122250214c33e723a5dd523fc145fc0" |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 172 | plmnId: |
Vini Gajjar | af6abca | 2021-11-30 19:37:47 +0530 | [diff] [blame] | 173 | mcc: 208 |
| 174 | mnc: 93 |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 175 | defaultAs: "192.168.250.1" #default icmp pkt destination |
Vini Gajjar | 4dff76a | 2022-01-24 10:29:29 +0000 | [diff] [blame] | 176 | - profileType: uetriggservicereq |
| 177 | profileName: profile4 |
| 178 | enable: false |
| 179 | gnbName: gnb1 |
Ajay Lotan Thakur | 25c2762 | 2022-10-06 15:22:45 -0600 | [diff] [blame] | 180 | execInParallel: false #run all subscribers in this profile parallel |
| 181 | stepTrigger: false #wait for trigger to move to next step |
Vini Gajjar | 4dff76a | 2022-01-24 10:29:29 +0000 | [diff] [blame] | 182 | startImsi: 208930100007497 |
| 183 | ueCount: 5 |
Ajay Lotan Thakur | eb879c4 | 2022-06-09 17:37:24 -0600 | [diff] [blame] | 184 | opc: "981d464c7c52eb6e5036234984ad0bcf" |
| 185 | key: "5122250214c33e723a5dd523fc145fc0" |
Vini Gajjar | 4dff76a | 2022-01-24 10:29:29 +0000 | [diff] [blame] | 186 | plmnId: |
| 187 | mcc: 208 |
| 188 | mnc: 93 |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 189 | defaultAs: "192.168.250.1" #default icmp pkt destination |
Vini Gajjar | 6cd5c62 | 2021-12-17 09:43:40 +0530 | [diff] [blame] | 190 | - profileType: deregister |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 191 | profileName: profile5 |
Vini Gajjar | 6cd5c62 | 2021-12-17 09:43:40 +0530 | [diff] [blame] | 192 | enable: false |
| 193 | gnbName: gnb1 |
Ajay Lotan Thakur | 25c2762 | 2022-10-06 15:22:45 -0600 | [diff] [blame] | 194 | execInParallel: false #run all subscribers in this profile parallel |
| 195 | stepTrigger: false #wait for trigger to move to next step |
Ajay Lotan Thakur | b9b6ed3 | 2022-03-02 00:17:19 -0600 | [diff] [blame] | 196 | startImsi: 208930100007497 |
Vini Gajjar | 6cd5c62 | 2021-12-17 09:43:40 +0530 | [diff] [blame] | 197 | ueCount: 5 |
Ajay Lotan Thakur | eb879c4 | 2022-06-09 17:37:24 -0600 | [diff] [blame] | 198 | opc: "981d464c7c52eb6e5036234984ad0bcf" |
| 199 | key: "5122250214c33e723a5dd523fc145fc0" |
Vini Gajjar | 6cd5c62 | 2021-12-17 09:43:40 +0530 | [diff] [blame] | 200 | plmnId: |
| 201 | mcc: 208 |
| 202 | mnc: 93 |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 203 | defaultAs: "192.168.250.1" #default icmp pkt destination |
| 204 | - profileType: nwtriggeruedereg # profile type |
| 205 | profileName: profile6 # uniqely identifies a profile within application |
| 206 | enable: false # Set true to execute the profile, false otherwise. |
| 207 | gnbName: gnb1 # gNB to be used for this profile |
Ajay Lotan Thakur | 25c2762 | 2022-10-06 15:22:45 -0600 | [diff] [blame] | 208 | execInParallel: false #run all subscribers in this profile parallel |
| 209 | stepTrigger: false #wait for trigger to move to next step |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 210 | startImsi: 208930100007497 # First IMSI. Subsequent values will be used if ueCount is more than 1 |
| 211 | ueCount: 5 # Number of UEs for for which the profile will be executed |
| 212 | defaultAs: "192.168.250.1" #default icmp pkt destination |
| 213 | perUserTimeout: 100 #if no expected event received in this time then treat it as failure |
Ajay Lotan Thakur | eb879c4 | 2022-06-09 17:37:24 -0600 | [diff] [blame] | 214 | opc: "981d464c7c52eb6e5036234984ad0bcf" |
| 215 | key: "5122250214c33e723a5dd523fc145fc0" |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 216 | plmnId: # Public Land Mobile Network ID, <PLMN ID> = <MCC><MNC>. Should match startImsi |
| 217 | mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9) |
| 218 | mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9) |
| 219 | - profileType: uereqpdusessrelease # profile type |
| 220 | profileName: profile7 # uniqely identifies a profile within application |
| 221 | enable: false # Set true to execute the profile, false otherwise. |
| 222 | gnbName: gnb1 # gNB to be used for this profile |
Ajay Lotan Thakur | 25c2762 | 2022-10-06 15:22:45 -0600 | [diff] [blame] | 223 | execInParallel: false #run all subscribers in this profile parallel |
| 224 | stepTrigger: false #wait for trigger to move to next step |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 225 | startImsi: 208930100007497 # First IMSI. Subsequent values will be used if ueCount is more than 1 |
| 226 | ueCount: 5 # Number of UEs for for which the profile will be executed |
Ajay Lotan Thakur | eb879c4 | 2022-06-09 17:37:24 -0600 | [diff] [blame] | 227 | opc: "981d464c7c52eb6e5036234984ad0bcf" |
| 228 | key: "5122250214c33e723a5dd523fc145fc0" |
Ajay Lotan Thakur | 84ddbea | 2022-03-21 16:07:16 -0600 | [diff] [blame] | 229 | plmnId: # Public Land Mobile Network ID, <PLMN ID> = <MCC><MNC>. Should match startImsi |
| 230 | mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9) |
| 231 | mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9) |
| 232 | defaultAs: "192.168.250.1" #default icmp pkt destination |
Vijaya Tiruveedula | 56f595f | 2022-10-27 05:28:50 -0600 | [diff] [blame] | 233 | - profileType: pdusessest |
| 234 | profileName: profile8 |
| 235 | enable: true |
| 236 | gnbName: gnb2 |
| 237 | execInParallel: false #run all subscribers in this profile parallel |
| 238 | stepTrigger: false #wait for trigger to move to next step |
| 239 | startImsi: 208930100007501 |
| 240 | ueCount: 5 |
| 241 | opc: "981d464c7c52eb6e5036234984ad0bcf" |
| 242 | key: "5122250214c33e723a5dd523fc145fc0" |
| 243 | plmnId: |
| 244 | mcc: 208 |
| 245 | mnc: 93 |
| 246 | dataPktCount: 5 # Number of UL user data packets to be transmitted. Common for all UEs |
| 247 | defaultAs: "192.168.250.1" #default icmp pkt destination |