Wei-Yu Chen | 0f12b9c | 2019-04-18 11:12:59 -0700 | [diff] [blame] | 1 | # 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 | |
Hyunsun Moon | 1eedd03 | 2019-08-19 02:36:44 -0500 | [diff] [blame] | 16 | images: |
| 17 | tags: |
| 18 | omecCni: docker.io/omecproject/omec-cni:0.0.1 |
| 19 | sriovDp: docker.io/nfvpe/sriov-device-plugin:v3.0.0 |
| 20 | pullPolicy: IfNotPresent |
Wei-Yu Chen | 0f12b9c | 2019-04-18 11:12:59 -0700 | [diff] [blame] | 21 | |
Hyunsun Moon | e855865 | 2019-08-15 13:16:46 -0600 | [diff] [blame] | 22 | # We need to speficy both pfName and driver name to prevent one interface to be |
| 23 | # allocated to multiple resource pools |
| 24 | resourceList: |
| 25 | - resourceName: sriov_vfio |
| 26 | # Provide vfio-pci bounded physical function names in your cluster under "pfNames" |
| 27 | # Do not change "drivers" unless you know what you're doing |
| 28 | selectors: |
| 29 | pfNames: |
| 30 | - eno1 |
| 31 | drivers: |
| 32 | - vfio-pci |
| 33 | - resourceName: sriov_netdevice |
| 34 | # Provide pfNames and their drivers that serve virtual functions in your cluster |
| 35 | selectors: |
| 36 | pfNames: |
| 37 | - eno1 |
| 38 | drivers: |
| 39 | - ixgbevf |