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

vagrant-box atomic-host -> stream9 (backport #7581) #7582

Merged
merged 1 commit into from
Aug 5, 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
1 change: 1 addition & 0 deletions roles/ceph-container-engine/vars/CentOS-9.yml
2 changes: 1 addition & 1 deletion roles/ceph-facts/tasks/container_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

- name: set_fact container_binary
set_fact:
container_binary: "{{ 'podman' if (podman_binary.stat.exists and ansible_facts['distribution'] == 'Fedora') or (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '8') else 'docker' }}"
container_binary: "{{ 'podman' if (podman_binary.stat.exists and ansible_facts['distribution'] == 'Fedora') or (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] in ['8', '9']) else 'docker' }}"
when: not docker2podman | default(false) | bool
2 changes: 1 addition & 1 deletion site-container.yml.sample
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@

- name: set_fact container_binary
set_fact:
container_binary: "{{ 'podman' if (podman_binary.stat.exists and ansible_facts['distribution'] == 'Fedora') or (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '8') else 'docker' }}"
container_binary: "{{ 'podman' if (podman_binary.stat.exists and ansible_facts['distribution'] == 'Fedora') or (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] in ['8', '9']) else 'docker' }}"

- name: get ceph status from the first monitor
command: >
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-mdss/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-mdss/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-mgrs/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-mgrs/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-mons/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-mons/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-osds/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-osds/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-rbdmirrors/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-rgws/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/add-rgws/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/all-in-one/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ disks: "[ '/dev/sda', '/dev/sdb' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
# client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
# client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/all-in-one/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ disks: "[ '/dev/sda', '/dev/sdb' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
# client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
# client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/all_daemons/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ disks: "[ '/dev/sda', '/dev/sdb' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
#client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
#client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/all_daemons/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ disks: "[ '/dev/sda', '/dev/sdb' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
#client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
#client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/all_daemons_ipv6/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/cephadm/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cluster_subnet: 192.168.31
# set 1024 for CentOS
memory: 2048

vagrant_box: centos/stream8
vagrant_box: centos/stream9
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
#vagrant_sync_dir: /home/vagrant/sync
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/collocation/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ disks: "[ '/dev/sda', '/dev/sdb' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
# client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
# client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/collocation/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ disks: "[ '/dev/sda', '/dev/sdb' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
# client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
# client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/docker2podman/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cluster_subnet: 192.168.59
# set 1024 for CentOS
memory: 2048

vagrant_box: centos/stream8
vagrant_box: centos/stream9
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
#vagrant_sync_dir: /home/vagrant/sync
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ disks: "[ '/dev/sda', '/dev/sdb' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
# client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
# client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/external_clients/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ disks: "[ '/dev/sda', '/dev/sdb' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
# client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
# client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/infra_lv_create/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/lvm-auto-discovery/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/lvm-batch/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/lvm-batch/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/lvm-osds/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/lvm-osds/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/stream8
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/ooo-collocation/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ disks: "[ '/dev/sda', '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
# client_vagrant_box: centos/stream8
vagrant_box: centos/stream9
# client_vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/podman/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cluster_subnet: 192.168.31
# set 1024 for CentOS
memory: 2048

vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
#vagrant_sync_dir: /home/vagrant/sync
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/rbdmirror/container/vagrant_variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ disks: "[ '/dev/sdb', '/dev/sdc' ]"
# For more boxes have a look at:
# - https://atlas.hashicorp.com/boxes/search?utf8=✓&sort=&provider=virtualbox&q=
# - https://download.gluster.org/pub/gluster/purpleidea/vagrant/
vagrant_box: centos/atomic-host
vagrant_box: centos/stream9
#ssh_private_key_path: "~/.ssh/id_rsa"
# The sync directory changes based on vagrant box
# Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
Expand Down
Loading
Loading