blob: e2350af39555d6f8e7def83ce6b5f295d36e069e [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:
Ajay Lotan Thakurb48ed2d2020-07-01 11:58:51 -070038 pfcp: false
Jeremy Ronquillo223db002020-06-05 10:28:22 -070039 # Provide the S1U and SGI networks facing device name and IP address
40 s1u:
41 device: s1u-net
42 ip: 192.168.251.3/24
43 sgi:
44 device: sgi-net
45 ip: 192.168.250.3/24
46 # Note that zmq is used for cp-dp commmunication when multiple UPFs is set
47 # Otherwise, direct UDP communication is used
48 # TODO: unify cp-dp comm to ZMQ for both multi and single UPF scenario
49 multiUpfs: true
50 cpComm:
51 # IMPORTANT: when you deploy CP and DP to separate clusters, enable nodePort
52 # from both cpComm(omec-control-plane) and dpComm(omec-data-plane) and
53 # set "addr" to remote cluster's entry node IP and
54 # "port" to cpComm.nodePort.port value configured in omec-control-plane.
55 addr: spgwc-headless
56 port: 21
57 dpComm:
58 nodePort:
59 enabled: false
60 port: 30020
61 port: 20
62 # Set "--no-pci --vdev eth_af_packet0,iface=s1u-net --vdev eth_af_packet1,iface=sgi-net"
63 # when sriov is disabled
64 devices: ""
65 dpName: "onf-menlo"
66
67networks:
68 cniPlugin: vfioveth
69 # Currently, we do not support dynamic IP allocation
70 ipam: static
71 s1u:
72 subnet: 192.168.251.0/24
73 mask: 255.255.255.0
74 gateway: 192.168.251.254
75 sgi:
76 subnet: 192.168.250.0/24
77 mask: 255.255.255.0
78 gateway: 192.168.250.250