From 5803fd065570bd04f0d0a958831dace9194bea7e Mon Sep 17 00:00:00 2001 From: manuelbuil Date: Wed, 18 Sep 2024 10:19:07 +0200 Subject: [PATCH] Fix e2e test bug in mixedosbgp Signed-off-by: manuelbuil --- tests/e2e/mixedosbgp/Vagrantfile | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/tests/e2e/mixedosbgp/Vagrantfile b/tests/e2e/mixedosbgp/Vagrantfile index 6fe1e218c2..3727cbdb88 100644 --- a/tests/e2e/mixedosbgp/Vagrantfile +++ b/tests/e2e/mixedosbgp/Vagrantfile @@ -29,7 +29,7 @@ def provision(vm, role, role_num, node_num) install_type = "Version=#{RELEASE_VERSION}" else vm.provision "shell", path: "../scripts/latest_commit.ps1", args: [GITHUB_BRANCH, "./rke2_commits.txt"] - install_type = "-Commit=(Get-Content -TotalCount 1 ./rke2_commits.txt)" + install_type = "-Commit (Get-Content -TotalCount 1 ./rke2_commits.txt)" end else if !RELEASE_VERSION.empty? @@ -89,16 +89,6 @@ def provision(vm, role, role_num, node_num) puts "invalid box: " + vm.box + " found for windows agent" abort end - - # For Windows GUI on virtualbox - # vm.provider "virtualbox" do |v| - # v.gui = true - # v.customize ["modifyvm", :id, "--vram", 128] - # v.customize ["modifyvm", :id, "--clipboard", "bidirectional"] - # v.customize ["modifyvm", :id, "--accelerate3d", "on"] - # v.customize ["modifyvm", :id, "--accelerate2dvideo", "on"] - # end - # If using libvirt, use virt-viewer for GUI after bring up the node vm.provision :rke2, run: 'once' do |rke2| rke2.env = install_type rke2.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321