Skip to content

Commit

Permalink
Merge pull request #374 from daberkow/fix/update_centos_box
Browse files Browse the repository at this point in the history
Use latest CentOS boxes instead of specific dates
  • Loading branch information
bastelfreak authored Jun 28, 2024
2 parents 62000f3 + 7755b1c commit 30ced10
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
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

0 comments on commit 30ced10

Please sign in to comment.