blob: cddf87e9de183f23145d6ee2b7afaf77ad2d0577 [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
10 omecCni: docker.io/omecproject/omec-cni:1.0.0
11 spgwu: docker.io/omecproject/ngic-dp:central-cp-multi-upfs-latest-debug
12 depCheck: quay.io/stackanetes/kubernetes-entrypoint:v0.3.1
13 pullPolicy: IfNotPresent
14
15nodeSelectors:
16 enabled: false
17 spgwu:
18 label: omec-dp
19 value: enabled
20
21resources:
22 enabled: true
23 spgwu:
24 requests:
25 cpu: 4
26 memory: 8Gi
27 limits:
28 cpu: 4
29 memory: 8Gi
30
31config:
32 coreDump:
33 enabled: false
34 path: /tmp/coredump
35 sriov:
36 enabled: true
37 spgwu:
38 # Provide the S1U and SGI networks facing device name and IP address
39 s1u:
40 device: s1u-net
41 ip: 192.168.251.3/24
42 sgi:
43 device: sgi-net
44 ip: 192.168.250.3/24
45 # Note that zmq is used for cp-dp commmunication when multiple UPFs is set
46 # Otherwise, direct UDP communication is used
47 # TODO: unify cp-dp comm to ZMQ for both multi and single UPF scenario
48 multiUpfs: true
49 cpComm:
50 # IMPORTANT: when you deploy CP and DP to separate clusters, enable nodePort
51 # from both cpComm(omec-control-plane) and dpComm(omec-data-plane) and
52 # set "addr" to remote cluster's entry node IP and
53 # "port" to cpComm.nodePort.port value configured in omec-control-plane.
54 addr: spgwc-headless
55 port: 21
56 dpComm:
57 nodePort:
58 enabled: false
59 port: 30020
60 port: 20
61 # Set "--no-pci --vdev eth_af_packet0,iface=s1u-net --vdev eth_af_packet1,iface=sgi-net"
62 # when sriov is disabled
63 devices: ""
64 dpName: "onf-menlo"
65
66networks:
67 cniPlugin: vfioveth
68 # Currently, we do not support dynamic IP allocation
69 ipam: static
70 s1u:
71 subnet: 192.168.251.0/24
72 mask: 255.255.255.0
73 gateway: 192.168.251.254
74 sgi:
75 subnet: 192.168.250.0/24
76 mask: 255.255.255.0
77 gateway: 192.168.250.250