diff options
author | 2025-03-18 13:21:52 +0100 | |
---|---|---|
committer | 2025-03-18 13:21:52 +0100 | |
commit | a729115549d258798fed6f273dd9e2fc69d9d582 (patch) | |
tree | 9096872701bdad692d4b41f6aae3e7c4ad20b699 | |
parent | 37476828f3b11304f254ebabba2212098658b30f (diff) |
fix(botstrap): Add Cavium 50G to DUT1 in example
The .example yaml topology is used to list NIC models
otherwise not present in static testbed topologies (but present in AWS)
so the bootstrap script knows what to exclude.
This is needed for trigers with "nic_* to avoid those nics.
Change-Id: Ibd11b3f2b3b3ba6ced832a30b4b4d6609101218d
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
-rw-r--r-- | topologies/available/2n_hw_testbed1.yaml.example | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/topologies/available/2n_hw_testbed1.yaml.example b/topologies/available/2n_hw_testbed1.yaml.example index 7f205a38d5..75326b612e 100644 --- a/topologies/available/2n_hw_testbed1.yaml.example +++ b/topologies/available/2n_hw_testbed1.yaml.example @@ -42,14 +42,14 @@ nodes: model: virtual port5: mac_address: "00:00:00:00:00:00" - pci_address: "0000:00:03.0" + pci_address: "0000:00:05.0" driver: e1000 link: link5 model: Cavium-A063-50G port6: mac_address: "00:00:00:00:00:00" - pci_address: "0000:00:04.0" - link: link5 + pci_address: "0000:00:06.0" + link: link6 driver: e1000 model: Cavium-A063-50G DUT1: @@ -85,4 +85,16 @@ nodes: pci_address: "0000:00:04.0" driver: e1000 link: link4 - model: virtual
\ No newline at end of file + model: virtual + port5: + mac_address: "00:00:00:00:00:00" + pci_address: "0000:00:05.0" + driver: e1000 + link: link5 + model: Cavium-A063-50G + port6: + mac_address: "00:00:00:00:00:00" + pci_address: "0000:00:06.0" + link: link6 + driver: e1000 + model: Cavium-A063-50G |