Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop centos8 and centos8-stream #1845

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions vagrant/boxes.d/00-centos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,6 @@ boxes:
- foreman
- katello

centos8:
box_name: 'centos/8'
disk_size: 40
pty: true
scenarios:
- foreman
- katello

centos8-stream:
box_name: 'centos/stream8'
disk_size: 40
libvirt: https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-latest.x86_64.vagrant-libvirt.box
virtualbox: https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-latest.x86_64.vagrant-virtualbox.box
pty: true
scenarios:
- foreman
- katello

centos9-stream:
box_name: 'centos/stream9'
disk_size: 40
Expand Down
11 changes: 0 additions & 11 deletions vagrant/config/versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ installers:
- 'almalinux8'
- 'centos7'
- 'centos7-fips'
- 'centos8'
- 'centos8-stream'
- 'debian10'
- 'debian11'
- 'ubuntu2004'
Expand All @@ -19,7 +17,6 @@ installers:
puppet: 7
boxes:
- 'almalinux8'
- 'centos8-stream'
- 'debian11'
- 'ubuntu2004'

Expand All @@ -29,7 +26,6 @@ installers:
puppet: 7
boxes:
- 'almalinux8'
- 'centos8-stream'
- 'debian11'
- 'ubuntu2004'

Expand All @@ -39,7 +35,6 @@ installers:
puppet: 7
boxes:
- 'almalinux8'
- 'centos8-stream'
- 'debian11'
- 'ubuntu2004'

Expand All @@ -49,7 +44,6 @@ installers:
puppet: 7
boxes:
- 'almalinux8'
- 'centos8-stream'
- 'debian11'
- 'ubuntu2004'

Expand All @@ -59,7 +53,6 @@ installers:
puppet: 7
boxes:
- 'almalinux8'
- 'centos8-stream'
- 'debian11'
- 'ubuntu2004'

Expand All @@ -70,7 +63,6 @@ installers:
puppet: 7
boxes:
- 'almalinux8'
- 'centos8-stream'
- 'debian11'
- 'ubuntu2004'

Expand All @@ -82,7 +74,6 @@ installers:
boxes:
- 'almalinux8'
- 'almalinux9'
- 'centos8-stream'
- 'centos9-stream'
- 'debian11'
- 'ubuntu2004'
Expand All @@ -95,7 +86,6 @@ installers:
boxes:
- 'almalinux8'
- 'almalinux9'
- 'centos8-stream'
- 'centos9-stream'
- 'debian11'
- 'ubuntu2004'
Expand All @@ -109,7 +99,6 @@ installers:
boxes:
- 'almalinux8'
- 'almalinux9'
- 'centos8-stream'
- 'centos9-stream'
- 'debian11'
- 'ubuntu2004'
Expand Down
6 changes: 3 additions & 3 deletions vagrant/test/lib/box_loader_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ def test_load
loader.load!

assert_instance_of Hash, loader.boxes
assert_includes loader.boxes, 'centos8-stream-katello-nightly'
assert_equal 'centos8-stream-katello-nightly', loader.boxes['centos8-stream-katello-nightly']['name']
assert_equal 'centos/stream8', loader.boxes['centos8-stream-katello-nightly']['box_name']
assert_includes loader.boxes, 'centos9-stream-katello-nightly'
assert_equal 'centos9-stream-katello-nightly', loader.boxes['centos9-stream-katello-nightly']['name']
assert_equal 'centos/stream9', loader.boxes['centos9-stream-katello-nightly']['box_name']
end

def test_load_with_exclude
Expand Down
Loading