diff options
author | Ritu Sood <ritu.sood@intel.com> | 2021-08-16 21:22:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-08-16 21:22:02 +0000 |
commit | 3a82af6a25de8e91b4b6e86a7eb7cb3cf6e81d35 (patch) | |
tree | e1315eeb865cf0ba5137151a28e8f9683f4e3824 | |
parent | 000e281332c3f2b5fdaa7bdd84b932107a7b8eb6 (diff) | |
parent | 3bd059302847f4785f6c450d09f940b2fea23549 (diff) |
Merge "Select vfio-pci deviceType in SR-IOV network"
-rw-r--r-- | kud/deployment_infra/helm/sriov-network/values.yaml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/kud/deployment_infra/helm/sriov-network/values.yaml b/kud/deployment_infra/helm/sriov-network/values.yaml index d9a38222..26111886 100644 --- a/kud/deployment_infra/helm/sriov-network/values.yaml +++ b/kud/deployment_infra/helm/sriov-network/values.yaml @@ -4,6 +4,10 @@ policies: - # policyName is the name of the policy policyName: "policy-xl710" + # deviceType is the driver type for configured VFs. Allowed values are + # "netdevice" and "vfio-pci". + deviceType: "vfio-pci" + # nicSelector selects the NICs to be configured. At least one of # vendor, deviceId, pfNames, or rootDevices must be deined. nicSelector: @@ -37,6 +41,7 @@ policies: resourceName: "intel_sriov_nic" - policyName: "policy-82599es" + deviceType: "vfio-pci" nicSelector: deviceID: "10fb" vendor: "8086" @@ -47,6 +52,7 @@ policies: resourceName: "intel_sriov_nic" - policyName: "policy-i350" + deviceType: "vfio-pci" nicSelector: deviceID: "1521" vendor: "8086" @@ -81,7 +87,7 @@ networks: # deviceType is the driver type for configured VFs. Allowed values are # "netdevice" and "vfio-pci". - #deviceType: "netdevice" + #deviceType: "vfio-pci" # eSwitchMode NIC Device Mode. Allowed values are "legacy" and # "switchdev". |