blob: ebed5a24ccdd5805507e7252226462fc81b6ebdd [file] [log] [blame]
Hyunsun Moon6ff622e2020-03-11 17:14:48 -07001# Copyright 2020-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15images:
16 tags:
17 init: docker.io/omecproject/pod-init:1.0.0
18 bess: registry.central.aetherproject.net/upf-epc-bess:0.1.0-dev
19 cpiface: registry.central.aetherproject.net/upf-epc-cpiface:0.1.0-dev
20 pullPolicy: Always
21
22nodeSelectors:
23 enabled: false
24 spgwu:
25 label: omec-upf
26 value: enabled
27
28resources:
29 enabled: true
30 bess:
31 requests:
32 hugepages-1Gi: 2Gi
33 cpu: 2
34 memory: 256Mi
35 limits:
36 hugepages-1Gi: 2Gi
37 cpu: 2
38 memory: 256Mi
39 routectl:
40 requests:
41 cpu: 256m
42 memory: 128Mi
43 limits:
44 cpu: 256m
45 memory: 128Mi
46 web:
47 requests:
48 cpu: 256m
49 memory: 128Mi
50 limits:
51 cpu: 256m
52 memory: 128Mi
53 cpiface:
54 requests:
55 cpu: 256m
56 memory: 128Mi
57 limits:
58 cpu: 256m
59 memory: 128Mi
60
61config:
62 coreDump:
63 enabled: false
64 path: /tmp/coredump
65 # Provide UPF interface driver.
66 # Available options are dpdk, af_xdp, af_packet.
67 mode: "dpdk"
68 spgwu:
69 name: "dp-staging"
70 workers: 1
71 maxSessions: 50000
Hyunsun Moon531f42a2020-03-25 20:11:02 -070072 maxIpDefragFlows: 1000
Hyunsun Moon6ff622e2020-03-11 17:14:48 -070073 # Provide the S1U and SGI networks facing device name and IP address
74 s1u:
75 device: s1u
76 ip: 192.168.252.7/24
77 sgi:
78 device: sgi
79 ip: 192.168.250.7/24
80 zmq:
81 recvPort: 20
82 spgwc:
83 addr: spgwc-headless.omec.svc.staging.central
84 port: 21
85 bess:
86 web:
87 nodePort: 36000
88
89networks:
90 sriov:
91 enabled: true
92 cniPlugin: vfioveth
93 # Dynamic IP allocation is not supported for the user plane interfaces
94 ipam: static
95 enb:
96 subnet: 192.168.251.0/24
97 ue:
98 subnet: 10.250.0.0/16
99 sgi:
100 subnet: 192.168.250.0/24
101 gateway: 192.168.250.1
102 s1u:
103 subnet: 192.168.252.0/24
104 gateway: 192.168.252.1