Last active
December 29, 2020 20:53
-
-
Save williamcaban/64474ad2d0e72c8104aafdf07f2efcbd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: sriovnetwork.openshift.io/v1 | |
kind: SriovNetworkNodePolicy | |
metadata: | |
name: mh-vfio-ens2f0 | |
namespace: openshift-sriov-network-operator | |
spec: | |
# name of Midhaul it connects to | |
resourceName: mh_vfio_ens2f0 | |
nodeSelector: | |
ran.openshift.io/sriov: "" | |
ran.openshift.io/mh-profile0-vfio: "" | |
deviceType: vfio-pci | |
priority: 10 | |
# mtu: 1500 | |
numVfs: 8 | |
nicSelector: | |
vendor: "8086" | |
deviceID: "158b" | |
pfNames: | |
- ens2f0#0-3 | |
--- | |
apiVersion: sriovnetwork.openshift.io/v1 | |
kind: SriovNetworkNodePolicy | |
metadata: | |
name: mh-netdevice-ens2f0 | |
namespace: openshift-sriov-network-operator | |
spec: | |
# name of Midhaul it connects to | |
resourceName: mh_netdevice_ens2f0 | |
nodeSelector: | |
ran.openshift.io/sriov: "" | |
ran.openshift.io/mh-profile0-netdevice: "" | |
deviceType: netdevice | |
priority: 10 | |
# mtu: 1500 | |
numVfs: 8 | |
nicSelector: | |
vendor: "8086" | |
deviceID: "158b" | |
pfNames: | |
- ens2f0#4-7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################### | |
# SR-IOV Network Definition for the NS of the workload NS=flexran | |
apiVersion: sriovnetwork.openshift.io/v1 | |
kind: SriovNetwork | |
metadata: | |
name: mh-vfio-ens2f0 | |
namespace: openshift-sriov-network-operator | |
spec: | |
resourceName: mh_vfio_ens2f0 | |
networkNamespace: flexran | |
# vlan: 2345 | |
ipam: |- | |
{} | |
linkState: auto | |
# spoofChk: "<spoof_check>" | |
# maxTxRate: <max_tx_rate> | |
# minTxRate: <min_rx_rate> | |
# vlanQoS: <vlan_qos> | |
# trust: "<trust_vf>" | |
# capabilities: <capabilities> | |
--- | |
apiVersion: sriovnetwork.openshift.io/v1 | |
kind: SriovNetwork | |
metadata: | |
name: mh-netdevice-ens2f0 | |
namespace: openshift-sriov-network-operator | |
spec: | |
resourceName: mh_netdevice_ens2f0 | |
networkNamespace: flexran | |
# vlan: 2345 | |
ipam: |- | |
{"type": "static"} | |
linkState: auto | |
# spoofChk: "<spoof_check>" | |
# maxTxRate: <max_tx_rate> | |
# minTxRate: <min_rx_rate> | |
# vlanQoS: <vlan_qos> | |
# trust: "<trust_vf>" | |
# capabilities: <capabilities> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment