2016-11-05 01:25:06 +08:00
|
|
|
[tox]
|
2020-01-27 22:49:30 +08:00
|
|
|
envlist = {centos,ubuntu}-{container,non_container}-{all_daemons,collocation,lvm_osds,shrink_mon,shrink_osd,shrink_mgr,shrink_mds,shrink_rbdmirror,shrink_rgw,lvm_batch,add_mons,add_osds,add_mgrs,add_mdss,add_rbdmirrors,add_rgws,rgw_multisite,purge,storage_inventory,lvm_auto_discovery,all_in_one}
|
2019-10-08 23:23:08 +08:00
|
|
|
{centos,ubuntu}-container-{ooo_collocation}
|
|
|
|
{centos,ubuntu}-non_container-{switch_to_containers}
|
2018-10-25 22:15:36 +08:00
|
|
|
infra_lv_create
|
2019-03-28 03:36:51 +08:00
|
|
|
migrate_ceph_disk_to_ceph_volume
|
2017-07-12 21:02:32 +08:00
|
|
|
|
2016-11-05 01:25:06 +08:00
|
|
|
skipsdist = True
|
|
|
|
|
2019-03-28 03:36:51 +08:00
|
|
|
# a test scenario that deploys a luminous cluster with ceph-disk osds
|
|
|
|
# and then upgrades to nautilus and migrates those osds to ceph-volume
|
|
|
|
[testenv:migrate_ceph_disk_to_ceph_volume]
|
|
|
|
whitelist_externals =
|
|
|
|
vagrant
|
|
|
|
bash
|
|
|
|
git
|
|
|
|
pip
|
|
|
|
passenv=*
|
|
|
|
setenv=
|
2019-06-15 05:31:39 +08:00
|
|
|
ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey
|
2019-09-09 23:11:43 +08:00
|
|
|
ANSIBLE_CONFIG = {toxinidir}/ansible.cfg
|
2019-03-28 03:36:51 +08:00
|
|
|
ANSIBLE_ACTION_PLUGINS = {toxinidir}/plugins/actions
|
|
|
|
ANSIBLE_CALLBACK_PLUGINS = {toxinidir}/plugins/callback
|
|
|
|
ANSIBLE_CALLBACK_WHITELIST = profile_tasks
|
2019-08-15 01:14:09 +08:00
|
|
|
ANSIBLE_FILTER_PLUGINS = {toxinidir}/plugins/filter
|
2019-03-28 03:36:51 +08:00
|
|
|
CEPH_STABLE_RELEASE = luminous
|
|
|
|
# only available for ansible >= 2.5
|
|
|
|
ANSIBLE_STDOUT_CALLBACK = yaml
|
|
|
|
changedir={toxinidir}/tests/functional/migrate_ceph_disk_to_ceph_volume
|
|
|
|
commands=
|
2020-01-16 00:02:37 +08:00
|
|
|
bash {toxinidir}/tests/scripts/vagrant_up.sh --no-provision {posargs:--provider=virtualbox}
|
2019-03-28 03:36:51 +08:00
|
|
|
bash {toxinidir}/tests/scripts/generate_ssh_config.sh {changedir}
|
|
|
|
|
|
|
|
# use the stable-3.2 branch to deploy a luminous cluster
|
|
|
|
git clone -b {env:CEPH_ANSIBLE_BRANCH:stable-3.2} --single-branch https://github.com/ceph/ceph-ansible.git {envdir}/tmp/ceph-ansible
|
|
|
|
pip install -r {envdir}/tmp/ceph-ansible/tests/requirements.txt
|
|
|
|
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts {envdir}/tmp/ceph-ansible/tests/functional/setup.yml
|
|
|
|
|
|
|
|
# deploy the cluster
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts {envdir}/tmp/ceph-ansible/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
|
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:luminous} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
"
|
|
|
|
|
|
|
|
# wait 30sec for services to be ready
|
|
|
|
sleep 30
|
|
|
|
# test cluster state using ceph-ansible tests
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts --ssh-config={changedir}/vagrant_ssh_config {envdir}/tmp/ceph-ansible/tests/functional/tests
|
2019-03-28 03:36:51 +08:00
|
|
|
|
|
|
|
# install ceph-ansible@master requirements
|
|
|
|
pip install -r {toxinidir}/tests/requirements.txt
|
|
|
|
|
|
|
|
# migrate osds to ceph-volume and upgrade to nautilus
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/infrastructure-playbooks/rolling_update.yml --extra-vars "\
|
2019-03-28 03:36:51 +08:00
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:UPDATE_CEPH_DOCKER_IMAGE:ceph/daemon} \
|
|
|
|
ceph_docker_image_tag={env:UPDATE_CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
ceph_stable_release=nautilus \
|
|
|
|
osd_scenario=lvm \
|
|
|
|
"
|
|
|
|
|
|
|
|
# test cluster state again using ceph-ansible tests
|
2019-05-22 16:42:33 +08:00
|
|
|
bash -c "CEPH_STABLE_RELEASE=nautilus py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests"
|
2019-03-28 03:36:51 +08:00
|
|
|
|
|
|
|
# reboot all vms
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/tests/functional/reboot.yml
|
|
|
|
|
|
|
|
# retest to ensure cluster came back up correctly after rebooting
|
2019-05-22 16:42:33 +08:00
|
|
|
bash -c "CEPH_STABLE_RELEASE=nautilus py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests"
|
2019-03-28 03:36:51 +08:00
|
|
|
|
|
|
|
vagrant destroy --force
|
|
|
|
|
2018-08-09 06:12:30 +08:00
|
|
|
# a test scenario for the lv-create.yml and lv-teardown playbooks
|
|
|
|
[testenv:infra_lv_create]
|
|
|
|
whitelist_externals =
|
|
|
|
vagrant
|
|
|
|
bash
|
|
|
|
mkdir
|
2018-08-09 20:26:58 +08:00
|
|
|
cat
|
2018-08-09 06:12:30 +08:00
|
|
|
passenv=*
|
|
|
|
setenv=
|
2019-06-15 05:31:39 +08:00
|
|
|
ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey
|
2019-09-09 23:11:43 +08:00
|
|
|
ANSIBLE_CONFIG = {toxinidir}/ansible.cfg
|
2018-08-09 06:12:30 +08:00
|
|
|
ANSIBLE_ACTION_PLUGINS = {toxinidir}/plugins/actions
|
|
|
|
ANSIBLE_CALLBACK_PLUGINS = {toxinidir}/plugins/callback
|
|
|
|
ANSIBLE_CALLBACK_WHITELIST = profile_tasks
|
2018-12-14 18:14:30 +08:00
|
|
|
# only available for ansible >= 2.5
|
|
|
|
ANSIBLE_STDOUT_CALLBACK = yaml
|
2018-08-09 06:12:30 +08:00
|
|
|
deps= -r{toxinidir}/tests/requirements.txt
|
2019-08-06 16:57:26 +08:00
|
|
|
changedir={toxinidir}/tests/functional/infra_lv_create
|
2018-08-09 06:12:30 +08:00
|
|
|
commands=
|
2020-01-16 00:02:37 +08:00
|
|
|
bash {toxinidir}/tests/scripts/vagrant_up.sh --no-provision {posargs:--provider=virtualbox}
|
2018-08-09 06:12:30 +08:00
|
|
|
bash {toxinidir}/tests/scripts/generate_ssh_config.sh {changedir}
|
|
|
|
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/infrastructure-playbooks/lv-create.yml
|
2018-08-09 06:12:30 +08:00
|
|
|
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/infrastructure-playbooks/lv-teardown.yml --extra-vars "ireallymeanit=yes"
|
2018-08-09 06:12:30 +08:00
|
|
|
|
2019-08-06 16:57:26 +08:00
|
|
|
cat {toxinidir}/infrastructure-playbooks/lv-create.log
|
2018-08-09 20:26:58 +08:00
|
|
|
|
2018-08-09 06:12:30 +08:00
|
|
|
vagrant destroy --force
|
|
|
|
|
2017-01-27 00:38:10 +08:00
|
|
|
# extra commands for purging clusters
|
|
|
|
# that purge the cluster and then set it up again to
|
|
|
|
# ensure that a purge can clear nodes well enough that they
|
|
|
|
# can be redployed to.
|
|
|
|
[purge]
|
|
|
|
commands=
|
2019-11-07 20:39:25 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/rbd_map_devices.yml --extra-vars "\
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
"
|
|
|
|
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/{env:PURGE_PLAYBOOK:purge-cluster.yml} --extra-vars "\
|
2017-05-03 00:15:23 +08:00
|
|
|
ireallymeanit=yes \
|
2017-05-25 20:50:37 +08:00
|
|
|
remove_packages=yes \
|
2018-11-27 16:02:09 +08:00
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
2017-05-03 00:15:23 +08:00
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
2017-05-25 20:50:37 +08:00
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-10-25 22:15:36 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2017-05-03 00:15:23 +08:00
|
|
|
"
|
2017-08-23 22:12:40 +08:00
|
|
|
|
2018-12-04 16:21:51 +08:00
|
|
|
# re-setup lvm
|
2018-12-14 17:45:04 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml
|
2018-12-04 16:21:51 +08:00
|
|
|
|
2017-08-23 22:12:40 +08:00
|
|
|
# set up the cluster again
|
2019-04-10 00:20:35 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars @ceph-override.json --extra-vars "\
|
2018-11-27 16:02:09 +08:00
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
2017-08-23 22:12:40 +08:00
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-10-25 22:15:36 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2017-08-23 22:12:40 +08:00
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
|
|
"
|
|
|
|
# test that the cluster can be redeployed in a healthy state
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/{env:INVENTORY} --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2017-08-23 22:12:40 +08:00
|
|
|
|
|
|
|
[purge-lvm]
|
|
|
|
commands=
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/{env:PURGE_PLAYBOOK:purge-cluster.yml} --extra-vars "\
|
2017-08-23 22:12:40 +08:00
|
|
|
ireallymeanit=yes \
|
|
|
|
remove_packages=yes \
|
2018-11-27 16:02:09 +08:00
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
2017-08-23 22:12:40 +08:00
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-10-25 22:15:36 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2017-08-23 22:12:40 +08:00
|
|
|
"
|
|
|
|
|
2018-12-14 17:45:04 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml
|
2017-08-23 22:12:40 +08:00
|
|
|
|
2017-01-27 00:38:10 +08:00
|
|
|
# set up the cluster again
|
2018-12-14 17:45:04 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
2018-12-06 06:19:48 +08:00
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
2017-05-03 00:15:23 +08:00
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
2017-05-25 20:50:37 +08:00
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-10-25 22:15:36 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2017-07-17 23:26:48 +08:00
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
2017-05-03 00:15:23 +08:00
|
|
|
"
|
2017-01-27 00:38:10 +08:00
|
|
|
# test that the cluster can be redeployed in a healthy state
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/{env:INVENTORY} --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2017-01-27 00:38:10 +08:00
|
|
|
|
2017-08-31 06:07:28 +08:00
|
|
|
[shrink-mon]
|
|
|
|
commands=
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/shrink-mon.yml --extra-vars "\
|
2017-08-31 06:07:28 +08:00
|
|
|
ireallymeanit=yes \
|
2018-12-20 20:52:22 +08:00
|
|
|
mon_to_kill={env:MON_TO_KILL:mon2} \
|
2017-08-31 06:07:28 +08:00
|
|
|
"
|
|
|
|
[shrink-osd]
|
|
|
|
commands=
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/shrink-osd.yml --extra-vars "\
|
2017-08-31 06:07:28 +08:00
|
|
|
ireallymeanit=yes \
|
2020-02-27 00:03:32 +08:00
|
|
|
osd_to_kill={env:OSD_TO_KILL:0} \
|
2019-01-18 07:08:19 +08:00
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-12-05 01:41:36 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2017-08-31 06:07:28 +08:00
|
|
|
"
|
|
|
|
|
2019-06-20 18:23:22 +08:00
|
|
|
[shrink-mgr]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/shrink-mgr.yml --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
2020-02-27 00:03:32 +08:00
|
|
|
mgr_to_kill={env:MGR_TO_KILL:mgr1} \
|
2019-06-20 18:23:22 +08:00
|
|
|
"
|
|
|
|
|
2019-05-11 00:10:07 +08:00
|
|
|
[shrink-mds]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/shrink-mds.yml --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
2020-02-27 00:03:32 +08:00
|
|
|
mds_to_kill={env:MDS_TO_KILL:mds0} \
|
2019-05-11 00:10:07 +08:00
|
|
|
"
|
|
|
|
|
2019-06-25 21:30:53 +08:00
|
|
|
[shrink-rbdmirror]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/shrink-rbdmirror.yml --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
2020-02-27 00:03:32 +08:00
|
|
|
rbdmirror_to_kill={env:RBDMIRROR_TO_KILL:rbd-mirror0} \
|
2019-06-25 21:30:53 +08:00
|
|
|
"
|
|
|
|
|
2019-06-26 14:09:45 +08:00
|
|
|
[shrink-rgw]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/shrink-rgw.yml --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
2020-02-27 00:03:32 +08:00
|
|
|
rgw_to_kill={env:RGW_TO_KILL:rgw0.rgw0} \
|
2019-06-26 14:09:45 +08:00
|
|
|
"
|
|
|
|
|
2017-08-25 20:36:07 +08:00
|
|
|
[switch-to-containers]
|
|
|
|
commands=
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml --extra-vars "\
|
2017-08-25 20:36:07 +08:00
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
2018-09-08 01:38:41 +08:00
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-10-25 22:15:36 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2018-09-08 01:38:41 +08:00
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
2017-08-25 20:36:07 +08:00
|
|
|
"
|
|
|
|
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts-switch-to-containers --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2017-08-25 20:36:07 +08:00
|
|
|
|
2018-11-08 21:47:51 +08:00
|
|
|
[add-mons]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit mon1 {toxinidir}/tests/functional/setup.yml
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 {toxinidir}/infrastructure-playbooks/add-mon.yml --extra-vars "\
|
2018-11-08 21:47:51 +08:00
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
|
|
"
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts-2 --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2018-11-08 21:47:51 +08:00
|
|
|
|
2018-10-16 23:05:10 +08:00
|
|
|
[add-osds]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit osd1 {toxinidir}/tests/functional/setup.yml
|
2018-12-19 17:17:49 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit osd1 {toxinidir}/tests/functional/lvm_setup.yml
|
2019-11-08 16:53:58 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit osd1 {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
2018-10-16 23:05:10 +08:00
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
2018-12-06 06:19:48 +08:00
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
2018-10-16 23:05:10 +08:00
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-10-25 22:15:36 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2018-10-16 23:05:10 +08:00
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
|
|
"
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts-2 --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2018-10-16 23:05:10 +08:00
|
|
|
|
2019-02-09 15:46:12 +08:00
|
|
|
[add-mgrs]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit mgrs {toxinidir}/tests/functional/setup.yml
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit mgrs {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
|
|
"
|
|
|
|
testinfra -n 8 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts-2 {toxinidir}/tests/functional/tests
|
|
|
|
|
2019-02-12 11:15:44 +08:00
|
|
|
[add-mdss]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit mdss {toxinidir}/tests/functional/setup.yml
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit mdss {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
|
|
"
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts-2 --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2019-02-12 11:15:44 +08:00
|
|
|
|
2019-04-07 14:14:05 +08:00
|
|
|
[add-rbdmirrors]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit rbdmirrors {toxinidir}/tests/functional/setup.yml
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit rbdmirrors {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
|
|
"
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts-2 --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2019-04-07 14:14:05 +08:00
|
|
|
|
2019-04-07 14:36:31 +08:00
|
|
|
[add-rgws]
|
|
|
|
commands=
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit rgws {toxinidir}/tests/functional/setup.yml
|
|
|
|
ansible-playbook -vv -i {changedir}/hosts-2 --limit rgws {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
|
|
"
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts-2 --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2019-04-07 14:36:31 +08:00
|
|
|
|
2018-10-25 04:27:28 +08:00
|
|
|
[rgw-multisite]
|
|
|
|
commands=
|
2020-01-16 00:02:37 +08:00
|
|
|
bash -c "cd {changedir}/secondary && bash {toxinidir}/tests/scripts/vagrant_up.sh --no-provision {posargs:--provider=virtualbox}"
|
2018-10-25 04:27:28 +08:00
|
|
|
bash -c "cd {changedir}/secondary && bash {toxinidir}/tests/scripts/generate_ssh_config.sh {changedir}/secondary"
|
2019-10-04 22:07:05 +08:00
|
|
|
ansible-playbook --ssh-common-args='-F {changedir}/secondary/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey' -vv -i {changedir}/secondary/hosts {toxinidir}/tests/functional/setup.yml
|
2019-01-31 23:58:01 +08:00
|
|
|
ansible-playbook -vv -i "localhost," -c local {toxinidir}/tests/functional/dev_setup.yml --extra-vars "dev_setup={env:DEV_SETUP:False} change_dir={changedir}/secondary ceph_dev_branch={env:CEPH_DEV_BRANCH:master} ceph_dev_sha1={env:CEPH_DEV_SHA1:latest}" --tags "vagrant_setup"
|
2019-10-04 22:07:05 +08:00
|
|
|
ansible-playbook --ssh-common-args='-F {changedir}/secondary/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey' -vv -i {changedir}/secondary/hosts {toxinidir}/tests/functional/lvm_setup.yml
|
2019-02-01 16:10:56 +08:00
|
|
|
# ensure the rule isn't already present
|
|
|
|
ansible -i localhost, all -c local -b -m iptables -a 'chain=FORWARD protocol=tcp source=192.168.0.0/16 destination=192.168.0.0/16 jump=ACCEPT action=insert rule_num=1 state=absent'
|
|
|
|
ansible -i localhost, all -c local -b -m iptables -a 'chain=FORWARD protocol=tcp source=192.168.0.0/16 destination=192.168.0.0/16 jump=ACCEPT action=insert rule_num=1 state=present'
|
2019-10-04 22:07:05 +08:00
|
|
|
ansible-playbook --ssh-common-args='-F {changedir}/secondary/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey' -vv -i {changedir}/secondary/hosts {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
2018-10-25 04:27:28 +08:00
|
|
|
ireallymeanit=yes \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/secondary/fetch} \
|
2018-11-27 16:02:09 +08:00
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
2018-10-25 04:27:28 +08:00
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-11-27 21:50:18 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2018-10-25 04:27:28 +08:00
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
|
|
"
|
2018-10-29 20:30:59 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/tests/functional/rgw_multisite.yml --extra-vars "ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest}"
|
2019-10-04 22:07:05 +08:00
|
|
|
ansible-playbook --ssh-common-args='-F {changedir}/secondary/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey' -vv -i {changedir}/secondary/hosts {toxinidir}/tests/functional/rgw_multisite.yml --extra-vars "ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest}"
|
2018-10-29 20:30:59 +08:00
|
|
|
bash -c "cd {changedir}/secondary && vagrant destroy --force"
|
2019-02-01 16:10:56 +08:00
|
|
|
# clean rule after the scenario is complete
|
2018-11-29 01:46:45 +08:00
|
|
|
ansible -i localhost, all -c local -b -m iptables -a 'chain=FORWARD protocol=tcp source=192.168.0.0/16 destination=192.168.0.0/16 jump=ACCEPT action=insert rule_num=1 state=absent'
|
2018-10-25 04:27:28 +08:00
|
|
|
|
2018-12-06 07:15:02 +08:00
|
|
|
[storage-inventory]
|
|
|
|
commands=
|
2019-04-23 22:40:09 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/infrastructure-playbooks/storage-inventory.yml --extra-vars "\
|
2018-12-06 07:15:02 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
|
|
|
"
|
|
|
|
|
2016-11-05 01:25:06 +08:00
|
|
|
[testenv]
|
2016-11-05 02:01:28 +08:00
|
|
|
whitelist_externals =
|
|
|
|
vagrant
|
|
|
|
bash
|
2017-01-10 20:53:17 +08:00
|
|
|
pip
|
2017-09-22 05:47:36 +08:00
|
|
|
sleep
|
2018-10-16 23:05:10 +08:00
|
|
|
rm
|
2016-11-05 01:25:06 +08:00
|
|
|
passenv=*
|
2017-08-28 22:59:28 +08:00
|
|
|
sitepackages=True
|
2016-11-05 01:25:06 +08:00
|
|
|
setenv=
|
2019-06-15 05:31:39 +08:00
|
|
|
ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey
|
2018-10-25 20:42:54 +08:00
|
|
|
ANSIBLE_CONFIG = {toxinidir}/ansible.cfg
|
2017-10-13 00:43:29 +08:00
|
|
|
ANSIBLE_CALLBACK_WHITELIST = profile_tasks
|
2018-12-19 21:23:48 +08:00
|
|
|
ANSIBLE_KEEP_REMOTE_FILES = 1
|
2019-02-13 23:35:57 +08:00
|
|
|
ANSIBLE_CACHE_PLUGIN = memory
|
|
|
|
ANSIBLE_GATHERING = implicit
|
2018-12-14 18:14:30 +08:00
|
|
|
# only available for ansible >= 2.5
|
|
|
|
ANSIBLE_STDOUT_CALLBACK = yaml
|
2019-01-29 19:16:28 +08:00
|
|
|
non_container: DEV_SETUP = True
|
2018-12-14 19:01:16 +08:00
|
|
|
# Set the vagrant box image to use
|
2019-11-19 04:05:16 +08:00
|
|
|
centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/8
|
|
|
|
centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/8
|
2019-02-21 23:55:22 +08:00
|
|
|
ubuntu: CEPH_ANSIBLE_VAGRANT_BOX = guits/ubuntu-bionic64
|
2018-12-14 19:01:16 +08:00
|
|
|
|
|
|
|
# Set the ansible inventory host file to be used according to which distrib we are running on
|
2018-12-14 17:45:04 +08:00
|
|
|
ubuntu: _INVENTORY = hosts-ubuntu
|
|
|
|
INVENTORY = {env:_INVENTORY:hosts}
|
2018-12-06 06:19:48 +08:00
|
|
|
container: CONTAINER_DIR = /container
|
|
|
|
container: PLAYBOOK = site-docker.yml.sample
|
2019-12-03 22:48:59 +08:00
|
|
|
container: PURGE_PLAYBOOK = purge-container-cluster.yml
|
2018-12-06 06:19:48 +08:00
|
|
|
non_container: PLAYBOOK = site.yml.sample
|
2020-02-27 00:03:32 +08:00
|
|
|
shrink_mds: MDS_TO_KILL = mds0
|
2019-06-20 18:23:22 +08:00
|
|
|
shrink_mgr: MGR_TO_KILL = mgr1
|
2020-02-27 00:03:32 +08:00
|
|
|
shrink_mon: MON_TO_KILL = mon2
|
|
|
|
shrink_osd: OSD_TO_KILL = 0
|
|
|
|
shrink_rbdmirror: RBDMIRROR_TO_KILL = rbd-mirror0
|
|
|
|
shrink_rgw: RGW_TO_KILL = rgw0.rgw0
|
2017-07-12 21:02:32 +08:00
|
|
|
|
2017-07-26 02:46:22 +08:00
|
|
|
lvm_osds: CEPH_STABLE_RELEASE = luminous
|
2018-11-27 06:22:35 +08:00
|
|
|
|
2019-10-08 23:23:08 +08:00
|
|
|
CEPH_DOCKER_IMAGE_TAG = latest-master
|
|
|
|
CEPH_DOCKER_IMAGE_TAG_BIS = latest-bis-master
|
|
|
|
UPDATE_CEPH_DOCKER_IMAGE_TAG = latest-master
|
|
|
|
UPDATE_CEPH_DEV_BRANCH = master
|
|
|
|
UPDATE_CEPH_DEV_SHA1 = latest
|
|
|
|
CEPH_STABLE_RELEASE = nautilus
|
2018-11-27 06:22:35 +08:00
|
|
|
|
2019-08-14 19:58:47 +08:00
|
|
|
switch_to_containers: CEPH_STABLE_RELEASE = octopus
|
2019-08-23 15:29:19 +08:00
|
|
|
switch_to_containers: CEPH_DOCKER_IMAGE_TAG = latest-master-devel
|
2019-04-04 20:41:46 +08:00
|
|
|
|
2019-08-28 22:49:54 +08:00
|
|
|
ooo_collocation: CEPH_DOCKER_IMAGE_TAG = latest-master
|
2018-05-31 18:02:26 +08:00
|
|
|
deps= -r{toxinidir}/tests/requirements.txt
|
2016-11-05 01:25:06 +08:00
|
|
|
changedir=
|
2018-12-14 19:01:16 +08:00
|
|
|
all_daemons: {toxinidir}/tests/functional/all_daemons{env:CONTAINER_DIR:}
|
|
|
|
cluster: {toxinidir}/tests/functional/all_daemons{env:CONTAINER_DIR:}
|
|
|
|
shrink_mon: {toxinidir}/tests/functional/shrink_mon{env:CONTAINER_DIR:}
|
2019-06-20 18:23:22 +08:00
|
|
|
shrink_mgn: {toxinidir}/tests/functional/shrink_mon{env:CONTAINER_DIR:}
|
2018-12-14 19:01:16 +08:00
|
|
|
shrink_osd: {toxinidir}/tests/functional/shrink_osd{env:CONTAINER_DIR:}
|
2019-06-20 18:23:22 +08:00
|
|
|
shrink_mgr: {toxinidir}/tests/functional/shrink_mgr{env:CONTAINER_DIR:}
|
2019-05-11 00:10:07 +08:00
|
|
|
shrink_mds: {toxinidir}/tests/functional/shrink_mds{env:CONTAINER_DIR:}
|
2019-06-25 21:30:53 +08:00
|
|
|
shrink_rbdmirror: {toxinidir}/tests/functional/shrink_rbdmirror{env:CONTAINER_DIR:}
|
2019-06-26 14:09:45 +08:00
|
|
|
shrink_rgw: {toxinidir}/tests/functional/shrink_rgw{env:CONTAINER_DIR:}
|
2016-12-01 02:20:07 +08:00
|
|
|
# tests a 1 mon, 1 osd, 1 mds and 1 rgw centos7 cluster using docker
|
2018-12-14 19:01:16 +08:00
|
|
|
collocation: {toxinidir}/tests/functional/collocation{env:CONTAINER_DIR:}
|
|
|
|
purge: {toxinidir}/tests/functional/all_daemons{env:CONTAINER_DIR:}
|
|
|
|
switch_to_containers: {toxinidir}/tests/functional/all_daemons
|
|
|
|
lvm_osds: {toxinidir}/tests/functional/lvm-osds{env:CONTAINER_DIR:}
|
|
|
|
lvm_batch: {toxinidir}/tests/functional/lvm-batch{env:CONTAINER_DIR:}
|
|
|
|
ooo_collocation: {toxinidir}/tests/functional/ooo-collocation
|
2018-11-08 21:47:51 +08:00
|
|
|
add_mons: {toxinidir}/tests/functional/add-mons{env:CONTAINER_DIR:}
|
2018-12-14 19:01:16 +08:00
|
|
|
add_osds: {toxinidir}/tests/functional/add-osds{env:CONTAINER_DIR:}
|
2019-02-09 15:46:12 +08:00
|
|
|
add_mgrs: {toxinidir}/tests/functional/add-mgrs{env:CONTAINER_DIR:}
|
2019-02-12 11:15:44 +08:00
|
|
|
add_mdss: {toxinidir}/tests/functional/add-mdss{env:CONTAINER_DIR:}
|
2019-04-07 14:14:05 +08:00
|
|
|
add_rbdmirrors: {toxinidir}/tests/functional/add-rbdmirrors{env:CONTAINER_DIR:}
|
2019-04-07 14:36:31 +08:00
|
|
|
add_rgws: {toxinidir}/tests/functional/add-rgws{env:CONTAINER_DIR:}
|
2018-12-14 19:01:16 +08:00
|
|
|
rgw_multisite: {toxinidir}/tests/functional/rgw-multisite{env:CONTAINER_DIR:}
|
|
|
|
storage_inventory: {toxinidir}/tests/functional/lvm-osds{env:CONTAINER_DIR:}
|
2019-01-11 03:05:56 +08:00
|
|
|
lvm_auto_discovery: {toxinidir}/tests/functional/lvm-auto-discovery{env:CONTAINER_DIR:}
|
2020-01-27 22:49:30 +08:00
|
|
|
all_in_one: {toxinidir}/tests/functional/all-in-one{env:CONTAINER_DIR:}
|
2017-07-04 23:12:32 +08:00
|
|
|
|
2016-11-05 01:25:06 +08:00
|
|
|
commands=
|
2017-03-23 01:38:12 +08:00
|
|
|
rhcs: ansible-playbook -vv -i "localhost," -c local {toxinidir}/tests/functional/rhcs_setup.yml --extra-vars "change_dir={changedir}" --tags "vagrant_setup"
|
2019-08-14 19:58:47 +08:00
|
|
|
ansible-playbook -vv -i "localhost," -c local {toxinidir}/tests/functional/dev_setup.yml --extra-vars "dev_setup={env:DEV_SETUP:False} change_dir={changedir} ceph_dev_branch={env:CEPH_DEV_BRANCH:master} ceph_dev_sha1={env:CEPH_DEV_SHA1:latest}" --tags "vagrant_setup"
|
2017-03-22 23:14:41 +08:00
|
|
|
|
2019-04-02 20:53:19 +08:00
|
|
|
bash {toxinidir}/tests/scripts/vagrant_up.sh --no-provision {posargs:--provider=virtualbox}
|
2016-11-05 02:01:28 +08:00
|
|
|
bash {toxinidir}/tests/scripts/generate_ssh_config.sh {changedir}
|
2016-11-05 01:25:06 +08:00
|
|
|
|
2018-10-25 22:15:36 +08:00
|
|
|
# configure lvm
|
2019-08-28 22:49:54 +08:00
|
|
|
!lvm_batch-!lvm_auto_discovery-!ooo_collocation: ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml
|
2018-11-27 16:02:09 +08:00
|
|
|
|
2018-12-14 17:45:04 +08:00
|
|
|
rhcs: ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/rhcs_setup.yml --extra-vars "ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} repo_url={env:REPO_URL:} rhel7_repo_url={env:RHEL7_REPO_URL:}" --skip-tags "vagrant_setup"
|
2017-03-22 23:14:41 +08:00
|
|
|
|
2018-12-14 17:45:04 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/setup.yml
|
2018-05-28 18:02:49 +08:00
|
|
|
|
2018-12-14 17:45:04 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
2017-10-31 21:39:29 +08:00
|
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
2017-05-03 00:15:23 +08:00
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
2018-11-27 06:22:35 +08:00
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} \
|
2017-05-03 00:15:23 +08:00
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2018-10-25 22:15:36 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \
|
2017-07-17 23:26:48 +08:00
|
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:master} \
|
|
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
2017-05-03 00:15:23 +08:00
|
|
|
"
|
2017-03-16 19:16:09 +08:00
|
|
|
|
2018-06-26 19:42:27 +08:00
|
|
|
# wait 30sec for services to be ready
|
2019-04-04 10:09:12 +08:00
|
|
|
sleep 30
|
2017-09-22 05:47:36 +08:00
|
|
|
# test cluster state using ceph-ansible tests
|
2019-05-22 16:42:33 +08:00
|
|
|
py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/{env:INVENTORY} --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2017-09-22 05:47:36 +08:00
|
|
|
|
|
|
|
# reboot all vms
|
2019-04-01 23:22:50 +08:00
|
|
|
all_daemons: ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/reboot.yml
|
2017-09-22 05:47:36 +08:00
|
|
|
|
2018-06-26 19:42:27 +08:00
|
|
|
# wait 30sec for services to be ready
|
2019-07-03 21:27:18 +08:00
|
|
|
sleep 30
|
2017-09-22 05:47:36 +08:00
|
|
|
# retest to ensure cluster came back up correctly after rebooting
|
2019-05-22 16:42:33 +08:00
|
|
|
all_daemons: py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/{env:INVENTORY} --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests
|
2016-12-23 04:13:08 +08:00
|
|
|
|
2017-10-03 04:46:28 +08:00
|
|
|
# handlers/idempotency test
|
2020-01-27 22:49:30 +08:00
|
|
|
all_daemons,all_in_one: ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "delegate_facts_host={env:DELEGATE_FACTS_HOST:True} fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} ceph_stable_release={env:CEPH_STABLE_RELEASE:nautilus} ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG_BIS:latest-bis-master} ceph_dev_branch={env:CEPH_DEV_BRANCH:master} ceph_dev_sha1={env:CEPH_DEV_SHA1:latest}" --extra-vars @ceph-override.json
|
2017-10-03 04:46:28 +08:00
|
|
|
|
2018-12-14 19:01:16 +08:00
|
|
|
purge: {[purge]commands}
|
2017-08-25 20:36:07 +08:00
|
|
|
switch_to_containers: {[switch-to-containers]commands}
|
2017-08-31 06:07:28 +08:00
|
|
|
shrink_mon: {[shrink-mon]commands}
|
|
|
|
shrink_osd: {[shrink-osd]commands}
|
2019-06-20 18:23:22 +08:00
|
|
|
shrink_mgr: {[shrink-mgr]commands}
|
2019-05-11 00:10:07 +08:00
|
|
|
shrink_mds: {[shrink-mds]commands}
|
2019-06-25 21:30:53 +08:00
|
|
|
shrink_rbdmirror: {[shrink-rbdmirror]commands}
|
2019-06-26 14:09:45 +08:00
|
|
|
shrink_rgw: {[shrink-rgw]commands}
|
2018-10-16 23:05:10 +08:00
|
|
|
add_osds: {[add-osds]commands}
|
2018-11-08 21:47:51 +08:00
|
|
|
add_mons: {[add-mons]commands}
|
2019-02-09 15:46:12 +08:00
|
|
|
add_mgrs: {[add-mgrs]commands}
|
2019-02-12 11:15:44 +08:00
|
|
|
add_mdss: {[add-mdss]commands}
|
2019-04-07 14:14:05 +08:00
|
|
|
add_rbdmirrors: {[add-rbdmirrors]commands}
|
2019-04-07 14:36:31 +08:00
|
|
|
add_rgws: {[add-rgws]commands}
|
2018-10-25 04:27:28 +08:00
|
|
|
rgw_multisite: {[rgw-multisite]commands}
|
2018-12-06 07:15:02 +08:00
|
|
|
storage_inventory: {[storage-inventory]commands}
|
2017-01-27 00:38:10 +08:00
|
|
|
|
2016-11-05 02:01:28 +08:00
|
|
|
vagrant destroy --force
|