blob: 60a454b63516cd27125547d1d78fd593eec83058 [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:
18 init: docker.io/omecproject/pod-init:0.1.0-dev
19 omecCni: docker.io/omecproject/omec-cni:0.0.1
20 sriovDp: docker.io/nfvpe/sriov-device-plugin:v3.0.0
21 spgwu: docker.io/omecproject/ngic-dp:0.1.0-dev
22 depCheck: quay.io/stackanetes/kubernetes-entrypoint:v0.3.1
23 pullPolicy: IfNotPresent
24
25nodeSelectors:
26 enabled: false
27 spgwu:
28 label: omec-dp
29 value: enabled
30
31resources:
32 enabled: true
33 spgwu:
34 requests:
35 cpu: 4
36 memory: 8Gi
37 limits:
38 cpu: 4
39 memory: 8Gi
40
41config:
42 sriov:
43 enabled: true
44 resourceList:
45 - resourceName: sriov_vfio
46 selectors:
47 pfNames:
48 - eno1
49 drivers:
50 - vfio-pci
51 - resourceName: sriov_netdevice
52 selectors:
53 pfNames:
54 - eno1
55 drivers:
56 - ixgbevf
57 spgwu:
58 spgwc:
59 addr: spgwc
60 port: 21
Hyunsun Moon7a921d12019-08-21 20:52:09 -050061 # Provide the S1U and SGI networks facing device name and IP address
62 s1u:
63 device: s1u-net
64 ip: 119.0.0.3/24
65 sgi:
66 device: sgi-net
67 ip: 13.1.1.3/24
68 # Set "--no-pci --vdev eth_af_packet0,iface=s1u-net --vdev eth_af_packet1,iface=sgi-net"
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060069 # when sriov is disabled
70 devices: ""
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060071
72networks:
73 cniPlugin: vfioveth
Hyunsun Moon7a921d12019-08-21 20:52:09 -050074 # Currently, we do not support dynamic IP allocation
75 ipam: static
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060076 s1u:
77 subnet: 119.0.0.0/24
Hyunsun Moon7a921d12019-08-21 20:52:09 -050078 mask: 255.255.255.0
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060079 gateway: 119.0.0.254
80 sgi:
81 subnet: 13.1.1.0/24
Hyunsun Moon7a921d12019-08-21 20:52:09 -050082 mask: 255.255.255.0
Hyunsun Moon7a007bb2019-08-19 16:41:36 -060083 gateway: 13.1.1.254