blob: eaba8c942c39878f273df3f9684e26bf8e306c32 [file] [log] [blame]
Jeremy Ronquillo223db002020-06-05 10:28:22 -07001# Copyright 2020-present Open Networking Foundation
2#
Jeremy Ronquillo6046ce32020-06-18 11:06:29 -07003# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
Jeremy Ronquillo223db002020-06-05 10:28:22 -07004
5images:
6 tags:
7 init: docker.io/omecproject/pod-init:1.0.0
8 bess: registry.central.aetherproject.net/upf-epc-bess:0.1.0-dev
9 cpiface: registry.central.aetherproject.net/upf-epc-cpiface:0.1.0-dev
10 pullPolicy: Always
11
12nodeSelectors:
13 enabled: false
14 spgwu:
15 label: omec-upf
16 value: enabled
17
18resources:
19 enabled: true
20 bess:
21 requests:
22 hugepages-1Gi: 2Gi
23 cpu: 2
24 memory: 256Mi
25 limits:
26 hugepages-1Gi: 2Gi
27 cpu: 2
28 memory: 256Mi
29 routectl:
30 requests:
31 cpu: 256m
32 memory: 128Mi
33 limits:
34 cpu: 256m
35 memory: 128Mi
36 web:
37 requests:
38 cpu: 256m
39 memory: 128Mi
40 limits:
41 cpu: 256m
42 memory: 128Mi
43 cpiface:
44 requests:
45 cpu: 256m
46 memory: 128Mi
47 limits:
48 cpu: 256m
49 memory: 128Mi
50
51config:
52 coreDump:
53 enabled: false
54 path: /tmp/coredump
55 # Provide UPF interface driver.
56 # Available options are dpdk, af_xdp, af_packet.
57 mode: "dpdk"
58 spgwu:
59 name: "dp-staging"
60 workers: 1
61 maxSessions: 50000
62 # Provide the S1U and SGI networks facing device name and IP address
63 s1u:
64 device: s1u
65 ip: 192.168.252.7/24
66 sgi:
67 device: sgi
68 ip: 192.168.250.7/24
69 zmq:
70 recvPort: 20
71 spgwc:
72 addr: spgwc-headless.omec.svc.staging.central
73 port: 21
74 bess:
75 web:
76 nodePort: 36000
77
78networks:
79 sriov:
80 enabled: true
81 cniPlugin: vfioveth
82 # Dynamic IP allocation is not supported for the user plane interfaces
83 ipam: static
84 enb:
85 subnet: 192.168.251.0/24
86 ue:
87 subnet: 10.250.0.0/16
88 sgi:
89 subnet: 192.168.250.0/24
90 gateway: 192.168.250.1
91 s1u:
92 subnet: 192.168.252.0/24
93 gateway: 192.168.252.1