Skip to content

Commit

Permalink
Add support for Broadcom NICs (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-brcm authored Nov 28, 2023
1 parent bc73859 commit 92f00b5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
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"]
}
}
]
}

0 comments on commit 92f00b5

Please sign in to comment.