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