blob: a7346e53e8fec1a6d0c719bc464e67ca6ef4ad81 [file] [log] [blame]
Hyunsun Moonfbc2d052019-10-30 10:13:09 -07001# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15images:
16 tags:
17 omecCni: docker.io/omecproject/omec-cni:1.0.0
Hyunsun Moon7134ba62020-01-14 19:08:46 -080018 sriovPlugin: docker.io/nfvpe/sriov-device-plugin:v3.1
Hyunsun Moonfbc2d052019-10-30 10:13:09 -070019 pullPolicy: IfNotPresent
20
21config:
22 sriov:
23 # Provide interface used as a SR-IOV PF
24 # If your cluster has multiple nodes with different interface names,
25 # simply provide the whole list
26 resourceList:
Hyunsun Moon7134ba62020-01-14 19:08:46 -080027 # Provide PF name with VF range for S1U and SGI interfaces.
28 # Note that VF range of S1U must be smaller than SGI's.
Hyunsun Moonfbc2d052019-10-30 10:13:09 -070029 vfio:
Hyunsun Moon7134ba62020-01-14 19:08:46 -080030 s1uPfNames:
31 - eno1#0-3
32 sgiPfNames:
33 - eno1#4-7
Hyunsun Moonfbc2d052019-10-30 10:13:09 -070034 # Provide PF name with its VFs bounded to PF's driver
35 # The driver name must be specified to prevent one interface is
36 # registered to both vfio and netdevice resource pools
37 # NOTE: netDevice is required to use CDN service
38 netDevice:
39 pfNames:
40 - eno1
41 drivers:
42 - i40evf
43 - ixgbevf