diff --git a/tests/e2e/Vagrantfile b/tests/e2e/Vagrantfile index 6c1a500e..988831d9 100644 --- a/tests/e2e/Vagrantfile +++ b/tests/e2e/Vagrantfile @@ -57,16 +57,4 @@ Vagrant.configure("2") do |config| SHELL end - config.vm.define "tests-e2e-centosstream8", autostart: false do |centosstream8| - centosstream8.vm.box = "centos/stream8" - centosstream8.vm.provision "shell", inline: <<-SHELL - sudo dnf update -y - sudo dnf -y install ansible-core - # On CentOS the docker_container module is not available on ansible-core. - ansible-galaxy collection install community.docker - cd "#{guest_home_dir}/src/confidential-containers/operator/tests/e2e" - ./run-local.sh -r "#{runtimeclass}" - SHELL - end - end