]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
vagrant-box atomic-host -> stream9 stable-6.0
authorTeoman ONAY <tonay@ibm.com>
Tue, 16 Jul 2024 12:54:37 +0000 (14:54 +0200)
committerTeoman ONAY <tonay@ibm.com>
Fri, 2 Aug 2024 20:37:36 +0000 (22:37 +0200)
Signed-off-by: Teoman ONAY <tonay@ibm.com>
(cherry picked from commit f1b67bd4d94f3e40c01bd1fdac5b7dd96f06a020)

70 files changed:
roles/ceph-container-engine/vars/CentOS-9.yml [new symlink]
roles/ceph-facts/tasks/container_binary.yml
site-container.yml.sample
tests/functional/add-mdss/container/vagrant_variables.yml
tests/functional/add-mdss/vagrant_variables.yml
tests/functional/add-mgrs/container/vagrant_variables.yml
tests/functional/add-mgrs/vagrant_variables.yml
tests/functional/add-mons/container/vagrant_variables.yml
tests/functional/add-mons/vagrant_variables.yml
tests/functional/add-osds/container/vagrant_variables.yml
tests/functional/add-osds/vagrant_variables.yml
tests/functional/add-rbdmirrors/container/vagrant_variables.yml
tests/functional/add-rbdmirrors/vagrant_variables.yml
tests/functional/add-rgws/container/vagrant_variables.yml
tests/functional/add-rgws/vagrant_variables.yml
tests/functional/all-in-one/container/vagrant_variables.yml
tests/functional/all-in-one/vagrant_variables.yml
tests/functional/all_daemons/container/vagrant_variables.yml
tests/functional/all_daemons/vagrant_variables.yml
tests/functional/all_daemons_ipv6/container/vagrant_variables.yml
tests/functional/all_daemons_ipv6/vagrant_variables.yml
tests/functional/cephadm/vagrant_variables.yml
tests/functional/collocation/container/vagrant_variables.yml
tests/functional/collocation/vagrant_variables.yml
tests/functional/docker2podman/vagrant_variables.yml
tests/functional/external_clients/container/vagrant_variables.yml
tests/functional/external_clients/vagrant_variables.yml
tests/functional/filestore-to-bluestore/container/vagrant_variables.yml
tests/functional/filestore-to-bluestore/vagrant_variables.yml
tests/functional/infra_lv_create/vagrant_variables.yml
tests/functional/lvm-auto-discovery/container/vagrant_variables.yml
tests/functional/lvm-auto-discovery/vagrant_variables.yml
tests/functional/lvm-batch/container/vagrant_variables.yml
tests/functional/lvm-batch/vagrant_variables.yml
tests/functional/lvm-osds/container/vagrant_variables.yml
tests/functional/lvm-osds/vagrant_variables.yml
tests/functional/migrate_ceph_disk_to_ceph_volume/vagrant_variables.yml
tests/functional/ooo-collocation/vagrant_variables.yml
tests/functional/podman/vagrant_variables.yml
tests/functional/rbdmirror/container/secondary/vagrant_variables.yml
tests/functional/rbdmirror/container/vagrant_variables.yml
tests/functional/rbdmirror/secondary/vagrant_variables.yml
tests/functional/rbdmirror/vagrant_variables.yml
tests/functional/rgw-multisite/container/secondary/vagrant_variables.yml
tests/functional/rgw-multisite/container/vagrant_variables.yml
tests/functional/rgw-multisite/secondary/vagrant_variables.yml
tests/functional/rgw-multisite/vagrant_variables.yml
tests/functional/shrink_mds/container/vagrant_variables.yml
tests/functional/shrink_mds/vagrant_variables.yml
tests/functional/shrink_mgr/container/vagrant_variables.yml
tests/functional/shrink_mgr/vagrant_variables.yml
tests/functional/shrink_mon/container/vagrant_variables.yml
tests/functional/shrink_mon/vagrant_variables.yml
tests/functional/shrink_osd/container/vagrant_variables.yml
tests/functional/shrink_osd/vagrant_variables.yml
tests/functional/shrink_rbdmirror/container/vagrant_variables.yml
tests/functional/shrink_rbdmirror/vagrant_variables.yml
tests/functional/shrink_rgw/container/vagrant_variables.yml
tests/functional/shrink_rgw/vagrant_variables.yml
tests/functional/subset_update/container/vagrant_variables.yml
tests/functional/subset_update/vagrant_variables.yml
tox-cephadm.ini
tox-external_clients.ini
tox-filestore_to_bluestore.ini
tox-podman.ini
tox-rbdmirror.ini
tox-shrink_osd.ini
tox-subset_update.ini
tox-update.ini
tox.ini

diff --git a/roles/ceph-container-engine/vars/CentOS-9.yml b/roles/ceph-container-engine/vars/CentOS-9.yml
new file mode 120000 (symlink)
index 0000000..d49e1cd
--- /dev/null
@@ -0,0 +1 @@
+RedHat-8.yml
\ No newline at end of file
index 0054f7848ce38ae13ae260e184981431e16789ca..33a8f52d8911ac4e5459f28f6eb008b5e941e8ee 100644 (file)
@@ -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
\ No newline at end of file
index 2b40bd3cec04a46cbc5394f3b2630ab92635676f..54a1298eea81007e8fe59b5f438764292c39fc1b 100644 (file)
 
     - 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: >
index c145a2fdc7a0c77ea29e30b5a6502e69d70b39c7..cc3625db18b8fe2f4ea53ea929d2d6828219a287 100644 (file)
@@ -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/7
+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
index 9c40f37d390ab15c643dae1dd4d4044c7989044e..d9cae84c94de8c487430c16e7f0d14780fdbd7c9 100644 (file)
@@ -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/7
+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
index 84c1b58fb263f4486668cd739721308b6b53026a..318b30d2146fda7ff5ed184a63369b511ea802ee 100644 (file)
@@ -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/7
+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
index da3719adaf9c262b66d3de61627f12245e0b0f36..5c1b16b152f627f655c566bdb4f829e0131ccc5f 100644 (file)
@@ -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/7
+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
index 099a4080ee01841aa02b214a7e91b52dc99b0fb0..e4b8b15f08bba0815fa45857e374330b1cafdb60 100644 (file)
@@ -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
index ce43e35d1b1717d539135d603cb3f20207bd03e5..73f4e17540c950ba40b417b994527513e2db1a18 100644 (file)
@@ -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
index d350b64641500db925dde1175321d500275cf909..2bdc049ed84e86d06bbb6e0d3db7b0f1af666783 100644 (file)
@@ -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/7
+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
index 1b29cf1a672be9cda98c8bc8e75670b38c43801b..d7398ee9255bd279a849bec845507184a403aad8 100644 (file)
@@ -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/7
+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
index eaec01dbb668f74c28391adb5a605a9bf3697ec5..45351a0f29f9244ebd5004608ef116ca4f0ca777 100644 (file)
@@ -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/7
+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
index b10be1441fc94f6d2da96190896b2f64d961938d..5ce57c116fb8dd035b261704b9b80f7cd547cc63 100644 (file)
@@ -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/7
+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
index f26019607bbb4250933c44459d005a0bfb6022f4..d1820ae4f579dc2a64157adaabba1b618160c1ad 100644 (file)
@@ -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/7
+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
index b2d5ac2a65bc24b8df7dcb1f5dedca8f8827f23c..1b0440206c54527491f4f8fc7850c0967d5ce492 100644 (file)
@@ -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/7
+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
index 9a09499a2003424e5126a406bb2b5bea590b7dde..c062fcefd7da28f2c6a595b67a2b15298d70639b 100644 (file)
@@ -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/7
+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
index 2387399e6a30eda079c5c076f83b1c0491e86635..ff4a830193ba98717725a5148799861b5e426fc4 100644 (file)
@@ -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/7
-# client_vagrant_box: centos/7
+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
index 5e199588f02473ab0b7d38a078c684b6987969ed..4c8c80164821e8311be83183254988d771a02163 100644 (file)
@@ -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/7
+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
index 7da2da79d9bec9265c9eee76a97d18108d8be8d3..9d6ee889a814b77e5139737d36d42df664fe9313 100644 (file)
@@ -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/7
+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
index 46045eab3436e5dada6eeec4d5839b6e2fb107d4..3ea9df8247d05c686917e135b9e21c1d025c074b 100644 (file)
@@ -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
index a8e0085fd2dbd057c764c1b23f432e9d1ef9210d..1ab1ab99c71ef1aac33b5b7adc398d4bd5f2190c 100644 (file)
@@ -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
index d3d23246482423aae2069d5de80cd687d932d796..791a8e3c74814a83e55a1c6a42f7c4d4a3e03c6f 100644 (file)
@@ -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
index 60be6803aed18d39775143788a7db9ce09225d88..1a8d592bec5932813592f1486b990fc93a7b4eef 100644 (file)
@@ -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/7
+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
index 1973f4ffb495387651d98b69346e3356b9eaf14e..10aa54d25d720413ca4466bc9e5298933a09c227 100644 (file)
@@ -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/7
-# client_vagrant_box: centos/7
+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
index 6d6042f8579e05b20c205f5ab6326363cdb7ecf8..e00a8682d631646f2ac07a7f64042871cafc38ee 100644 (file)
@@ -23,7 +23,7 @@ cluster_subnet: 192.168.59
 # set 1024 for CentOS
 memory: 2048
 
-vagrant_box: centos/7
+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
index 97b257c056dcf9b67764b054db943be8d93e069d..029f5fba5ecd9608ced2773da5e2c5e86ea3a656 100644 (file)
@@ -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/7
+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
index 110e1bbfb1abe090b4b7789ed239e10860ae91fe..d83ce7d76fa892bea0a271c6285d6021d4f763bb 100644 (file)
@@ -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/7
-# client_vagrant_box: centos/7
+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
index bebd61780e63adffd5ff854821457551603d3b8d..af02ac0e6d93d5aa39a38c7c31a591ea701d895b 100644 (file)
@@ -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
index df6851c176d28a280e23e1c5f33810689c7d329f..099ff9525f23f3536cb46c8b6f2f0c0156ceeff8 100644 (file)
@@ -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/7
+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
index a00b2357f17c2477eceba4b19fd3568642c57d5a..4fe6ceae7c03cb9486680ab892add6518e747c58 100644 (file)
@@ -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/7
+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
index fe2e314bc54217a11c01908a49c15150dd3ee8f2..db70b4dac4e018d5b8306f8eebdecd6e26184476 100644 (file)
@@ -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
index 116034c25310f8add517373d1391a5bff879173c..f39e6dc50e49b4654e0cea5e4dc69586f31fe656 100644 (file)
@@ -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/7
+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
index 568acea0ea651c45a0dd61eeda2c30e61a5ed45c..4715f51222ea5f59ddfc12642ce1ee3c607403b7 100644 (file)
@@ -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
index 587131aa6727e882d065ff1971e58a405dab9392..17b92dcc890620ee6ab08cd25cc2ff645e21a1ad 100644 (file)
@@ -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/7
+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
index a0c4d60bfa627fd0395da0b8fef839844c6954bd..fc9d4039ed9dfa4e33679f8ea1760e8ada74ce87 100644 (file)
@@ -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
index 883a9a4d6c9fae50200f6436c9a3c567ff1f7765..d05b3d2282be2cae8a94e45244f6fcd6e5ac4514 100644 (file)
@@ -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/7
+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
index d5f54f6f184b7fcb14092dd4edd44d6ce22facdf..2705c72e74c71e67fbd1b63aac8ddd45b4bccdb6 100644 (file)
@@ -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/7
+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
index 5578a6c45c7564b5dad77f6d059d75be67a23dfb..ffcdf77718f03804dc174fde055b3e44a06f46bb 100644 (file)
@@ -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/7
+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
index fc6b42c03b4c7a989a1a3c2076185a8a4fcc4414..d26c3237cff335f02687f91703bd5381d9837190 100644 (file)
@@ -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
index 36687acd7206e747f918de05f5760e4f0fd6bb8d..fb9909d08083313e510077ee92544cfb8945b925 100644 (file)
@@ -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
index 4528b3629a7d3b655648ffef6f16458228743d5b..3ba7bbcd4697b64ff823711ece70e7292833d5c6 100644 (file)
@@ -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
index 64e5ecbc805d57bf438e8c82f95675c0fac11fa2..d0336d9eb17f83391eb31a6bb3eb996a6c36e6dc 100644 (file)
@@ -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
index ec7b83dc68a99cb101befbf25ede745c148037a4..d45214767db6e8937255436e427e16afe6c7aa3c 100644 (file)
@@ -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
index d6d710b9e9dd800945c44cb67d5066329a3fb57e..b2875197ab814edb94da44a289cbe59444174883 100644 (file)
@@ -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
index db65bd1ee668a8ecb856730aaff03be99c350bf4..01e4be318520dcff8449ed56ba7024b421e8e5f0 100644 (file)
@@ -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
index 5baecbb4ce5375a58e6b13c75e3feaac266f4b05..7ebb5434ffd894f98ee5129f98316cbcca3bd9a8 100644 (file)
@@ -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/7
+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
index 03115ef284e1ae6809cbca3871f97df32fe93a76..5d2a8ffc524c3734d48e6bb5fd39b2f3697afe0e 100644 (file)
@@ -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/7
+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
index 99a2ea91c3850ef745e38798e4b8ca5ca65b2381..e2126f05cf00766dd67a7d023fab5394fe07a585 100644 (file)
@@ -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/7
+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
index 59b0e54a285b201b4747060feacf4664eda46370..45bf12eb594d47ec2d5e1895f2830426faa7379f 100644 (file)
@@ -48,7 +48,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/7
+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
index d0b852915bfd62162e12d8b866d022a17abd2470..98e058971816c18b4de561e5e7831878eb96dab0 100644 (file)
@@ -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/7
+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
index 413a4769650c850bd0989576bdf1e4663377a94f..ccc7d0b6adbb3cf45cb33c1a8968610e0da0340b 100644 (file)
@@ -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/7
+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
index 1e7ba6028c6321c3ffcc4babec5cc7bf97f59a46..8f78a6f8240d331da8da0ce2334d91a4965638cb 100644 (file)
@@ -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/7
+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
index c4c86a5f86df8241694601df90b5556225810533..1735106e81e3b1bfd70596b967fdebc78f6ff653 100644 (file)
@@ -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/7
+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
index 1214e00a2ff16209843b70ab27420715295783af..2bd91c28f02d663e20e3c5409c22af7842cc1714 100644 (file)
@@ -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/7
+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
index eb5e9350b0c55545504d88e9bac1dc6155ea3878..f9773dc675c25ab265bf6e7503a986859c4eb63f 100644 (file)
@@ -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/7
+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
index 49929cd86696c9583d0f251b21e02016c9719372..8491669c80c6d9d08c12563c141810b823b2e973 100644 (file)
@@ -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/7
+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
index 3655f72d05ab6aa2c3d76554e50f017275bed8a3..2df7f22759c8bbc2f4394a753b33b967a76207cc 100644 (file)
@@ -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/7
+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
index 0f6d43097817e6a3da552bac76c0a456d479b368..c1aca63e2d7ab3ff0caf723b571520974a026e53 100644 (file)
@@ -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/7
+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
index 1da35e1515da8c4bb05dd1fcb9a54aa97f719ca0..746b7cfc832078feb038f1f4399d85ddf22f8145 100644 (file)
@@ -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/7
+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
index e775d18a0db1c1713e54498df55f2fb169f609be..f344196980418e2cfa20a34f03c29451f529229e 100644 (file)
@@ -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/7
+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
index 00e9115a34512e269d0c247ff8c68074ef28ae42..1b7e2a7afd362fe78b9ddcc915c57fddf8c4b5c0 100644 (file)
@@ -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/7
+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
index 5a9585b49bf11016139f5ccfdc8bc1a1f9c98584..ce7e9cc6c9f84590831f942c96027712d2da12cf 100644 (file)
@@ -21,7 +21,7 @@ setenv=
   # only available for ansible >= 2.5
   ANSIBLE_STDOUT_CALLBACK = yaml
   # Set the vagrant box image to use
-  CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
 
 deps= -r{toxinidir}/tests/requirements.txt
 changedir= {toxinidir}/tests/functional/cephadm
index 5a47a2b85b671fbf1e4e64ec45c40da0749810fc..6f4f8b1bc5518955f0960be21ef4c3bdd73059fe 100644 (file)
@@ -20,8 +20,8 @@ setenv=
   ANSIBLE_STDOUT_CALLBACK = yaml
 #  non_container: DEV_SETUP = True
   # Set the vagrant box image to use
-  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
-  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
+  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
 
   container: CONTAINER_DIR = /container
   container: PLAYBOOK = site-container.yml.sample
index b2fb1a98e477e3c755a856b55a75a284be6126ce..0ee2d7cc105795f8bc3d43661cbf13d1a8a21bbd 100644 (file)
@@ -20,8 +20,8 @@ setenv=
   ANSIBLE_STDOUT_CALLBACK = yaml
 #  non_container: DEV_SETUP = True
   # Set the vagrant box image to use
-  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
-  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
+  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
 
   # Set the ansible inventory host file to be used according to which distrib we are running on
   INVENTORY = {env:_INVENTORY:hosts}
index 2af8c5a1172f5741d301bf1f5058d293d9f6d154..b503145fbcf42f793a57913b5c8e42ef984654c2 100644 (file)
@@ -21,7 +21,7 @@ setenv=
   # only available for ansible >= 2.5
   ANSIBLE_STDOUT_CALLBACK = yaml
   # Set the vagrant box image to use
-  CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
 
   # Set the ansible inventory host file to be used according to which distrib we are running on
   INVENTORY = {env:_INVENTORY:hosts}
index 4cd051938660eebcb792760c0d71ae7b538cdaab..a20166e9530ffeb50b19d50d789fe14c2e3eb807 100644 (file)
@@ -21,8 +21,8 @@ setenv=
   ANSIBLE_STDOUT_CALLBACK = yaml
 #  non_container: DEV_SETUP = True
   # Set the vagrant box image to use
-  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
-  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
+  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
 
   INVENTORY = {env:_INVENTORY:hosts}
   container: CONTAINER_DIR = /container
index c5e8be07009713a0ea18077e6c83461da58bd8d3..7ba70d7508b3b42926920f1ce721be741202b0a7 100644 (file)
@@ -61,8 +61,8 @@ setenv=
   ANSIBLE_STDOUT_CALLBACK = yaml
   non_container: DEV_SETUP = True
   # Set the vagrant box image to use
-  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
-  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
+  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
   INVENTORY = {env:_INVENTORY:hosts}
   container: CONTAINER_DIR = /container
   container: PLAYBOOK = site-container.yml.sample
index e5e2c5c918f01edefedab8c5c74d5dd3bd7b5652..3622beebdcae7f352e71ad5556d6d096c12a6986 100644 (file)
@@ -20,8 +20,8 @@ setenv=
   ANSIBLE_STDOUT_CALLBACK = yaml
 #  non_container: DEV_SETUP = True
   # Set the vagrant box image to use
-  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
-  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
+  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
 
   INVENTORY = {env:_INVENTORY:hosts}
   container: CONTAINER_DIR = /container
index 27fb8649f8906c41b83de93db6afcc7da3e9c79d..18f4ba59159c44165fc4f59d517c4279bae0d14b 100644 (file)
@@ -20,8 +20,8 @@ setenv=
   ANSIBLE_STDOUT_CALLBACK = yaml
 #  non_container: DEV_SETUP = True
   # Set the vagrant box image to use
-  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
-  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
+  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
 
   INVENTORY = {env:_INVENTORY:hosts}
   container: CONTAINER_DIR = /container
diff --git a/tox.ini b/tox.ini
index 1c1c71daf2d1c7f9b05ec9852dd3ee517e8b2bbc..e399ed2afdd96206654712c457bc0739ee41ab9e 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -277,8 +277,8 @@ setenv=
   ANSIBLE_STDOUT_CALLBACK = yaml
   non_container: DEV_SETUP = True
   # Set the vagrant box image to use
-  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
-  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
+  centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
+  centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
   INVENTORY = {env:_INVENTORY:hosts}
   container: CONTAINER_DIR = /container
   container: PLAYBOOK = site-container.yml.sample