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

Use latest CentOS boxes instead of specific dates #374

Merged
merged 2 commits into from
Jun 28, 2024
Merged
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
4 changes: 2 additions & 2 deletions lib/beaker-hostgenerator/data.rb
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def osinfo
},
vagrant: {
'box' => 'centos/stream8',
'box_url' => 'https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-20230501.0.x86_64.vagrant-libvirt.box',
'box_url' => 'https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-latest.x86_64.vagrant-libvirt.box',
},
},
'centos9-64' => {
Expand All @@ -161,7 +161,7 @@ def osinfo
},
vagrant: {
'box' => 'centos/stream9',
'box_url' => 'https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-20230410.0.x86_64.vagrant-libvirt.box',
'box_url' => 'https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-latest.x86_64.vagrant-libvirt.box',
},
},
'debian10-64' => {
Expand Down
12 changes: 10 additions & 2 deletions test/fixtures/per-host-settings/vagrant-hypervisor.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
---
arguments_string: --hypervisor vagrant_libvirt centos9-64m-debian11-64a-redhat7-64a{hypervisor=vagrant}
arguments_string: --hypervisor vagrant_libvirt centos9-64m-centos8-64a-debian11-64a-redhat7-64a{hypervisor=vagrant}
environment_variables: {}
expected_hash:
HOSTS:
centos9-64-1:
box: centos/stream9
box_url: https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-20230410.0.x86_64.vagrant-libvirt.box
box_url: https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-latest.x86_64.vagrant-libvirt.box
synced_folder: disabled
platform: el-9-x86_64
hypervisor: vagrant_libvirt
roles:
- agent
- master
centos8-64-1:
box: centos/stream8
box_url: https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-latest.x86_64.vagrant-libvirt.box
synced_folder: disabled
platform: el-8-x86_64
hypervisor: vagrant_libvirt
roles:
- agent
debian11-64-1:
box: debian/bullseye64
synced_folder: disabled
Expand Down