blob: a0761fcf88441e31b3ab17b3e64da5c3eb33a021 [file] [log] [blame]
Jeremy Ronquillo223db002020-06-05 10:28:22 -07001# Copyright 2018 Intel Corporation
Jeremy Ronquilloec2d3e42020-06-05 11:33:39 -07002# Copyright 2018-present Open Networking Foundation
Jeremy Ronquillo223db002020-06-05 10:28:22 -07003#
Jeremy Ronquilloec2d3e42020-06-05 11:33:39 -07004# SPDX-License-Identifier: Apache-2.0
Jeremy Ronquillo6046ce32020-06-18 11:06:29 -07005# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
Jeremy Ronquillo223db002020-06-05 10:28:22 -07006
7images:
8 tags:
9 init: docker.io/omecproject/pod-init:1.0.0
Hyunsun Moonaa3de7d2020-06-28 19:22:16 -070010 hssdb: docker.io/omecproject/c3po-hssdb:master-latest
11 hss: docker.io/omecproject/c3po-hss:master-latest
Hyunsun Moond60fcaf2020-07-14 16:09:13 -070012 mme: docker.io/omecproject/nucleus:master-latest
Jeremy Ronquillo223db002020-06-05 10:28:22 -070013 mmeExporter: docker.io/omecproject/mme-exporter:paging-latest
Hyunsun Moond60fcaf2020-07-14 16:09:13 -070014 spgwc: docker.io/omecproject/spgwc:master-latest
Jeremy Ronquillo223db002020-06-05 10:28:22 -070015 depCheck: quay.io/stackanetes/kubernetes-entrypoint:v0.3.1
16 pullPolicy: IfNotPresent
17
18nodeSelectors:
19 enabled: false
20 hss:
21 label: omec-cp
22 value: enabled
23 mme:
24 label: omec-cp
25 value: enabled
26 spgwc:
27 label: omec-cp
28 value: enabled
29
30resources:
31 enabled: true
32 hss:
33 requests:
34 cpu: 2
35 memory: 1Gi
36 limits:
37 cpu: 2
38 memory: 1Gi
39 mme:
40 # Note that MME pod is composed of 4 containers
41 # Provide resources for a container, not a pod total
42 requests:
43 cpu: 0.5
44 memory: 1Gi
45 limits:
46 cpu: 0.5
47 memory: 1Gi
48 spgwc:
49 requests:
50 cpu: 2
51 memory: 5Gi
52 limits:
53 cpu: 2
54 memory: 5Gi
55
56cassandra:
57 deploy: true
58 fullnameOverride: cassandra
59 image:
60 tag: 2.1.20
61 #selector:
62 # nodeSelector:
63 # cassandra: enabled
64 persistence:
65 enabled: false
66 config:
67 #cluster_size: 1
68 #seed_size: 1
69 endpoint_snitch: GossipingPropertyFileSnitch
70 readinessProbe:
71 initialDelaySeconds: 10
72 resources: {}
73 #requests:
74 # memory: 4Gi
75 # cpu: 2
76 #limits:
77 # memory: 4Gi
78 # cpu: 2
79
80config:
81 clusterDomain: cluster.local
82 coreDump:
83 enabled: false
84 path: /tmp/coredump
85 hss:
Hyunsun Moon83ff7352020-07-09 11:03:52 -070086 deploy: true
Jeremy Ronquillo223db002020-06-05 10:28:22 -070087 hssdb: cassandra
88 s6a:
89 nodePort:
90 enabled: false
91 port: 33868
92 # Provide the peer whitelist extension
93 # The peer name must be a fqdn. We allow also a special "*" character as the
94 # first label of the fqdn, to allow all fqdn with the same domain name.
95 # Example: *.example.net will allow host1.example.net and host2.example.net
96 acl:
97 oldTls: "*.cluster.local"
98 #ipSec:
99 bootstrap:
100 enabled: true
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700101 users:
Hyunsun Moona1c4c982020-07-22 15:01:29 -0700102 - apn: internet
103 key: "465b5ce8b199b49faa5f0a2ee238a6bc"
104 opc: "d4416644f6154936193433dd20a0ace0"
105 sqn: 96
106 imsiStart: "208014567891200"
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700107 msisdnStart: "1122334455"
108 count: 10
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700109 mmes:
110 - id: 1
Hyunsun Moon83ff7352020-07-09 11:03:52 -0700111 mme_identity: mme.omec.svc.cluster.local
112 mme_realm: omec.svc.cluster.local
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700113 isdn: "19136246000"
114 unreachability: 1
115 # See https://github.com/omec-project/c3po for details of config options
116 cfgFiles:
117 hss.json:
118 common:
119 fdcfg: conf/hss.conf
120 # Origin host and realm will be set automatically if unset
121 #originhost: ""
122 #originrealm: ""
123 hss:
124 gtwhost: "*"
125 gtwport: 9080
126 restport: 9081
127 ossport: 9082
128 # casssrv will be set to cassandra in the same cluster if unset
129 #casssrv: ""
130 cassusr: root
131 casspwd: root
132 cassdb: vhss
133 casscoreconnections: 2
134 cassmaxconnections: 8
135 cassioqueuesize: 32768
136 cassiothreads: 2
137 randv: true
138 optkey: "63bfa50ee6523365ff14c1f45f88737d"
139 reloadkey: false
140 logsize: 20
141 lognumber: 5
142 logname: logs/hss.log
143 logqsize: 8192
144 statlogsize: 20
145 statlognumber: 5
146 statlogname: logs/hss_stat.log
147 auditlogsize: 20
148 auditlognumber: 5
149 auditlogname: logs/hss_audit.log
150 statfreq: 2000
151 numworkers: 4
152 concurrent: 10
153 ossfile: conf/oss.json
Ajay Lotan Thakurb48ed2d2020-07-01 11:58:51 -0700154 verifyroamingsubscribers: false
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700155 oss.json:
156 option:
157 id: url
158 type: string
159 services:
160 - id: logger
161 commands:
162 - id: describe_loggers
163 - id: set_logger_level
164 options:
165 - id: name
166 type: string
167 - id: level
168 type: integer
169 - id: stats
170 commands:
171 - id: describe_stats_frequency
172 - id: describe_stats_live
173 - id: set_stats_frequency
174 options:
175 - id: frequency
176 type: integer
177 mme:
Hyunsun Moon83ff7352020-07-09 11:03:52 -0700178 deploy: true
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700179 spgwAddr: spgwc
180 s11:
181 nodePort:
182 enabled: false
183 port: 32124
184 s6a:
185 nodePort:
186 enabled: false
187 port: 33869
188 # See https://github.com/omec-project/openmme/blob/master/README.txt for more config options
189 cfgFiles:
190 config.json:
191 mme:
192 name: vmmestandalone
193 group_id: 1
194 code: 1
195 logging: error
196 mcc:
197 dig1: 2
198 dig2: 0
199 dig3: 8
200 mnc:
201 dig1: 0
202 dig2: 1
203 dig3: -1
204 plmnlist:
205 #plmn1 - aether common plmn, plmn2 is for comac-in-box
206 plmn1: "mcc=315,mnc=010"
207 plmn2: "mcc=208,mnc=01"
Ajay Lotan Thakurb48ed2d2020-07-01 11:58:51 -0700208 apnlist:
Hyunsun Moon6507d2f2020-07-14 15:06:25 -0700209 internet: "spgwc"
Badhrinath Pad6779412020-07-06 10:23:58 -0700210 security:
211 #int_alg_list: "[EIA0]"
212 int_alg_list: "[EIA1, EIA2, EIA0]"
213 sec_alg_list: "[EEA0, EEA1, EEA2]"
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700214 s1ap:
215 sctp_port: 36412
216 sctp_port_external: 36412
217 s11:
218 egtp_default_port: 2123
219 # sgw_addr and pgw_addr will be set dynamically if unset
220 #sgw_addr:
221 #pgw_addr:
222 s6a:
223 host_type: freediameter
224 # host and realm will be set dynamically if unset
225 #host:
226 #realm:
227 mme_exporter.json:
228 edges:
229 - id: onf-menlo
230 tac: 202
231 edgeName: edge-onf-menlo
232 - id: oaisim
233 tac: 1
234 edgeName: edge-oaisim
235 phoneTypes:
236 - imsi: 208014567891200
237 phoneType: "Pixel-4"
238 - imsi: 208014567891201
239 phoneType: "iPhone11-Pro"
240 spgwc:
Hyunsun Moon83ff7352020-07-09 11:03:52 -0700241 deploy: true
Hyunsun Moond60fcaf2020-07-14 16:09:13 -0700242 pfcp: true
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700243 apn: internet
244 # ueStaticPool is used only when multiUpfs is not enabled.
245 # In case of multiUpfs, use app_config.cfg to provide static pool per DP.
246 #ueStaticPool: 10.250.255.0/24
247 ueStaticPool: None
248 ueIpPool:
249 ip: 10.250.0.0
250 mask: 255.255.0.0
251 # This address must match to S1U IP address configured in omec-data-plane
252 s1uAddr: 192.168.251.3
Ajay Lotan Thakurb48ed2d2020-07-01 11:58:51 -0700253 #DNS Server - 3gpp compliant DNS server
254 nameserver: 127.0.0.1
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700255 s11:
256 nodePort:
257 enabled: false
258 port: 32123
259 port: 2123
260 # ZMQ mode is used for cp-dp communication when multiple UPFs is set
261 # Otherwise, direct UDP mode is used
262 # Note that enabling NodePort is valid only in direct UDP mode
263 multiUpfs: true
264 cpComm:
265 nodePort:
266 enabled: false
267 port: 30021
268 port: 21
269 # dpComm is required only when direct UDP mode is used
270 # When you deploy CP and DP to separate clusters in direct UDP mode, enable nodePort
271 # from both cpComm(omec-control-plane) and dpComm(omec-data-plane) and
272 # set "addr" to remote cluster's entry node IP and
273 # "port" to dpComm.nodePort.port value configured in omec-data-plane.
274 dpComm:
275 addr: spgwu
276 port: 20
Ajay Lotan Thakurb48ed2d2020-07-01 11:58:51 -0700277 jsonCfgFiles:
278 subscriber_mapping.json:
279 subscriber-selection-rules:
280 - priority: 5
281 keys:
282 serving-plmn:
283 mcc: 208
284 mnc: 10
285 tac: 1
286 imsi-range:
287 from: 200000000000000
288 to: 299999999999999
289 selected-apn-profile: apn-profile1
290 selected-qos-profile: qos-profile1
291 selected-access-profile:
292 - access-all
293 selected-user-plane-profile: user-plane1
294 - priority: 10
295 keys:
296 match-all: true
297 selected-apn-profile: apn-profile1
298 selected-qos-profile: qos-profile1
299 selected-access-profile:
300 - access-all
301 selected-user-plane-profile: user-plane1
302 apn-profiles:
303 apn-profile1:
304 apn-name: internet
305 usage: 1
306 network: lbo
307 gx_enabled: true
308 dns_primary: 8.8.8.4
309 dns_secondary: 8.8.8.8
310 mtu: 1460
311 user-plane-profiles:
312 user-plane1:
313 user-plane: spgwu-headless
314 qos-tags:
315 tag1: BW
316 access-tags:
317 tag1: ACC
318 qos-profiles:
319 mobile:
320 apn-ambr:
321 - 12345678
322 - 12345678
323 access-profiles:
324 access-all:
325 type: allow-all
326 internet-only:
327 type: internet-only
328 filter: No_private_network
329 intranet-only:
330 type: intranet-only
331 filter: only_private_network
332 apps-only:
333 type: specific-network
334 filter: only_apps_network
335 specific-app:
336 type: specific-destination-only
337 filter: allow-app-name
338 excluding-app:
339 type: excluding-this-app
340 filter: exclude-app-name
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700341 cfgFiles:
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700342 app_config.cfg: |
343 [GLOBAL]
344 NUM_DP_SELECTION_RULES = 2
345 [DP_SELECTION_RULE_1]
346 DPID = 1
347 DPNAME = onf-menlo
348 MCC = 315
349 MNC = 010
350 TAC = 202
351 [DP_SELECTION_RULE_2]
352 DPID = 2
353 DPNAME = oaisim
354 MCC = 208
355 MNC = 01
356 TAC = 1
357 adc_rules.cfg: |
358 [GLOBAL]
359 NUM_ADC_RULES = 0
360 meter_profile.cfg: |
361 [GLOBAL]
362 NUM_OF_IDX = 0
363 pcc_rules.cfg: |
364 [GLOBAL]
365 NUM_PCC_FILTERS = 1
366 UL_AMBR_MTR_PROFILE_IDX = 1
367 DL_AMBR_MTR_PROFILE_IDX = 2
368
369 [PCC_FILTER_1]
370 RULE_NAME = DefaultRule
371 RATING_GROUP = 9
372 SERVICE_ID = 0
373 RULE_STATUS = 0
374 GATE_STATUS = 1
375 SESSION_CONT = 0
376 REPORT_LEVEL = 1
377 CHARGING_MODE = 0
378 METERING_METHOD = 0
379 MUTE_NOTIFY = 0
380 MONITORING_KEY = 0
381 SPONSOR_ID = 0
382 REDIRECT_INFO = 0
383 PRECEDENCE = 254
384 DROP_PKT_COUNT = 0
385 UL_MBR_MTR_PROFILE_IDX = 3
386 DL_MBR_MTR_PROFILE_IDX = 3
387 SDF_FILTER_IDX = 99998
388 sdf_rules.cfg: |
389 [GLOBAL]
390 NUM_SDF_FILTERS = 1
391
392 [SDF_FILTER_1]
393 DIRECTION = downlink_only
394 IPV4_REMOTE = 13.2.1.113
395 IPV4_REMOTE_MASK = 255.255.255.0
396 PROTOCOL = 17
397 LOCAL_LOW_LIMIT_PORT = 0
398 LOCAL_HIGH_LIMIT_PORT = 65535
399 REMOTE_LOW_LIMIT_PORT = 0
400 REMOTE_HIGH_LIMIT_PORT = 65535
401
402prometheusExporter:
403 mme:
404 enabled: true # if it is set to false, subscriber-monitoring will not be operational
405 port: 33081 # for NodePort