From 402e7955df2eaea64d7b1ccaa47d94cdb112795f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 25 Jun 2024 09:14:31 +0200 Subject: [PATCH] tests: Remove centos8 configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Centos8 is EOL and unavailable anymore. I tried centos9 but that one is incorrectly configured in Vagrant: https://github.com/hashicorp/vagrant/issues/13272 and besides we don't really care at this point. Let's remove centos completely. Signed-off-by: Lukáš Doktor --- tests/e2e/Vagrantfile | 12 ------------ 1 file changed, 12 deletions(-) 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