Skip to content

Commit

Permalink
Merge pull request #73 from oshoval/tap
Browse files Browse the repository at this point in the history
UDN: Use managedTap instead passt
  • Loading branch information
kubevirt-bot authored Dec 16, 2024
2 parents 27393f7 + 64bea26 commit 5e1af16
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/e2e/persistentips_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ var _ = DescribeTableSubtree("Persistent IPs", func(params testParams) {
testParams{
role: rolePrimary,
ipsFrom: defaultNetworkStatusAnnotationIPs,
vmi: vmiWithPasst,
vmi: vmiWithManagedTap,
}),
)

Expand Down Expand Up @@ -378,9 +378,9 @@ func vmiWithMultus(namespace string) *kubevirtv1.VirtualMachineInstance {
)
}

func vmiWithPasst(namespace string) *kubevirtv1.VirtualMachineInstance {
func vmiWithManagedTap(namespace string) *kubevirtv1.VirtualMachineInstance {
const (
interfaceName = "passtnet"
interfaceName = "pod"
cloudInitNetworkData = `
version: 2
ethernets:
Expand All @@ -389,11 +389,11 @@ ethernets:
)
return testenv.NewVirtualMachineInstance(
namespace,
testenv.WithMemory("2048Mi"),
testenv.WithMemory("1024Mi"),
testenv.WithInterface(kubevirtv1.Interface{
Name: interfaceName,
Binding: &kubevirtv1.PluginBinding{
Name: "passt",
Name: "managedTap",
},
}),
testenv.WithNetwork(kubevirtv1.Network{
Expand Down

0 comments on commit 5e1af16

Please sign in to comment.