Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Broadcom NICs #510

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ The following NICs were tested with this implementation. However, other SR-IOV
- Mellanox ConnectX-6®
- Mellanox ConnectX-6® Dx
- Mellanox BlueField-2®
- Broadcom NetXtreme-E Series Adapters

## Quick Start

Expand Down Expand Up @@ -256,6 +257,15 @@ This plugin creates device plugin endpoints based on the configurations given in
}
}
},
{
"resourceName": "brcm_sriov_bnxt",
"resourcePrefix": "broadcom.com",
"selectors": [{
"vendors": ["14e4"],
"devices": ["1750"],
"drivers": ["bnxt_en"]
}],
},
{
"resourceName": "old_selectors_syntax_example",
"selectors": {
Expand Down
8 changes: 8 additions & 0 deletions deployments/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ data:
"drivers": ["mlx5_ib"],
"isRdma": true
}
},
{
"resourceName": "brcm_sriov_bnxt",
"selectors": {
"vendors": ["14e4"],
"devices": ["1750"],
"drivers": ["bnxt_en"]
}
}
]
}
Loading