blob: dd3ee9a12f11eff4dda2ad6a4f0db662954b7398 [file] [log] [blame]
Jeremy Ronquillo223db002020-06-05 10:28:22 -07001# Copyright 2018-present Open Networking Foundation
2# Copyright 2018 Intel Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16images:
17 tags:
18 init: docker.io/omecproject/pod-init:1.0.0
19 omecCni: docker.io/omecproject/omec-cni:1.0.0
20 spgwu: docker.io/omecproject/ngic-dp:central-cp-multi-upfs-latest-debug
21 depCheck: quay.io/stackanetes/kubernetes-entrypoint:v0.3.1
22 pullPolicy: IfNotPresent
23
24nodeSelectors:
25 enabled: false
26 spgwu:
27 label: omec-dp
28 value: enabled
29
30resources:
31 enabled: true
32 spgwu:
33 requests:
34 cpu: 4
35 memory: 8Gi
36 limits:
37 cpu: 4
38 memory: 8Gi
39
40config:
41 coreDump:
42 enabled: false
43 path: /tmp/coredump
44 sriov:
45 enabled: true
46 spgwu:
47 # Provide the S1U and SGI networks facing device name and IP address
48 s1u:
49 device: s1u-net
50 ip: 192.168.251.3/24
51 sgi:
52 device: sgi-net
53 ip: 192.168.250.3/24
54 # Note that zmq is used for cp-dp commmunication when multiple UPFs is set
55 # Otherwise, direct UDP communication is used
56 # TODO: unify cp-dp comm to ZMQ for both multi and single UPF scenario
57 multiUpfs: true
58 cpComm:
59 # IMPORTANT: when you deploy CP and DP to separate clusters, enable nodePort
60 # from both cpComm(omec-control-plane) and dpComm(omec-data-plane) and
61 # set "addr" to remote cluster's entry node IP and
62 # "port" to cpComm.nodePort.port value configured in omec-control-plane.
63 addr: spgwc-headless
64 port: 21
65 dpComm:
66 nodePort:
67 enabled: false
68 port: 30020
69 port: 20
70 # Set "--no-pci --vdev eth_af_packet0,iface=s1u-net --vdev eth_af_packet1,iface=sgi-net"
71 # when sriov is disabled
72 devices: ""
73 dpName: "onf-menlo"
74
75networks:
76 cniPlugin: vfioveth
77 # Currently, we do not support dynamic IP allocation
78 ipam: static
79 s1u:
80 subnet: 192.168.251.0/24
81 mask: 255.255.255.0
82 gateway: 192.168.251.254
83 sgi:
84 subnet: 192.168.250.0/24
85 mask: 255.255.255.0
86 gateway: 192.168.250.250