blob: dd3ee9a12f11eff4dda2ad6a4f0db662954b7398 [file] [log] [blame]
Hyunsun Moon7a007bb2019-08-19 16:41:36 -06001# 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:
Hyunsun Moon8ee7f482019-08-29 13:57:27 -050018 init: docker.io/omecproject/pod-init:1.0.0
19 omecCni: docker.io/omecproject/omec-cni:1.0.0
Hyunsun Moon4d87e3c2020-04-27 14:25:33 -060020 spgwu: docker.io/omecproject/ngic-dp:central-cp-multi-upfs-latest-debug
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060021 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:
Hyunsun Moonec0b44d2020-01-10 15:50:53 -070041 coreDump:
42 enabled: false
43 path: /tmp/coredump
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060044 sriov:
45 enabled: true
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060046 spgwu:
Hyunsun Moon7a921d12019-08-21 20:52:09 -050047 # Provide the S1U and SGI networks facing device name and IP address
48 s1u:
49 device: s1u-net
Hyunsun Moon9d067b52020-01-30 15:42:22 -080050 ip: 192.168.251.3/24
Hyunsun Moon7a921d12019-08-21 20:52:09 -050051 sgi:
52 device: sgi-net
Hyunsun Moon9d067b52020-01-30 15:42:22 -080053 ip: 192.168.250.3/24
Hyunsun Moon834c28f2019-12-05 18:26:22 -080054 # 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
Hyunsun Moon4d87e3c2020-04-27 14:25:33 -060057 multiUpfs: true
Hyunsun Moonc4a7d542019-08-22 18:53:40 -050058 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.
Hyunsun Moon4d87e3c2020-04-27 14:25:33 -060063 addr: spgwc-headless
Hyunsun Moonc4a7d542019-08-22 18:53:40 -050064 port: 21
65 dpComm:
66 nodePort:
67 enabled: false
68 port: 30020
Hyunsun Moon834c28f2019-12-05 18:26:22 -080069 port: 20
Hyunsun Moon7a921d12019-08-21 20:52:09 -050070 # Set "--no-pci --vdev eth_af_packet0,iface=s1u-net --vdev eth_af_packet1,iface=sgi-net"
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060071 # when sriov is disabled
72 devices: ""
Hyunsun Moon4d87e3c2020-04-27 14:25:33 -060073 dpName: "onf-menlo"
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060074
75networks:
76 cniPlugin: vfioveth
Hyunsun Moon7a921d12019-08-21 20:52:09 -050077 # Currently, we do not support dynamic IP allocation
78 ipam: static
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060079 s1u:
Hyunsun Moon9d067b52020-01-30 15:42:22 -080080 subnet: 192.168.251.0/24
Hyunsun Moon7a921d12019-08-21 20:52:09 -050081 mask: 255.255.255.0
Hyunsun Moon9d067b52020-01-30 15:42:22 -080082 gateway: 192.168.251.254
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060083 sgi:
Hyunsun Moon9d067b52020-01-30 15:42:22 -080084 subnet: 192.168.250.0/24
Hyunsun Moon7a921d12019-08-21 20:52:09 -050085 mask: 255.255.255.0
Hyunsun Moon9d067b52020-01-30 15:42:22 -080086 gateway: 192.168.250.250