]> git.proxmox.com Git - ceph.git/blob - ceph/src/ceph-volume/ceph_volume/tests/functional/simple/tox.ini
update sources to 12.2.10
[ceph.git] / ceph / src / ceph-volume / ceph_volume / tests / functional / simple / tox.ini
1 [tox]
2 envlist = {centos7,xenial}-{filestore,bluestore}-{activate,dmcrypt_plain,dmcrypt_luks}
3 skipsdist = True
4
5 [testenv]
6 whitelist_externals =
7 vagrant
8 bash
9 git
10 sleep
11 cp
12 passenv=*
13 setenv=
14 ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config
15 ANSIBLE_ACTION_PLUGINS = {envdir}/tmp/ceph-ansible/plugins/actions
16 ANSIBLE_STDOUT_CALLBACK = debug
17 ANSIBLE_RETRY_FILES_ENABLED = False
18 ANSIBLE_SSH_RETRIES = 5
19 VAGRANT_CWD = {changedir}
20 CEPH_VOLUME_DEBUG = 1
21 changedir=
22 centos7-filestore-activate: {toxinidir}/centos7/filestore/activate
23 centos7-bluestore-activate: {toxinidir}/centos7/bluestore/activate
24 xenial-filestore-activate: {toxinidir}/xenial/filestore/activate
25 xenial-bluestore-activate: {toxinidir}/xenial/bluestore/activate
26 xenial-bluestore-dmcrypt_plain: {toxinidir}/xenial/bluestore/dmcrypt-plain
27 xenial-bluestore-dmcrypt_luks: {toxinidir}/xenial/bluestore/dmcrypt-luks
28 xenial-filestore-dmcrypt_plain: {toxinidir}/xenial/filestore/dmcrypt-plain
29 xenial-filestore-dmcrypt_luks: {toxinidir}/xenial/filestore/dmcrypt-luks
30 centos7-bluestore-dmcrypt_plain: {toxinidir}/centos7/bluestore/dmcrypt-plain
31 centos7-bluestore-dmcrypt_luks: {toxinidir}/centos7/bluestore/dmcrypt-luks
32 centos7-filestore-dmcrypt_plain: {toxinidir}/centos7/filestore/dmcrypt-plain
33 centos7-filestore-dmcrypt_luks: {toxinidir}/centos7/filestore/dmcrypt-luks
34 commands=
35 git clone -b {env:CEPH_ANSIBLE_BRANCH:master} --single-branch https://github.com/ceph/ceph-ansible.git {envdir}/tmp/ceph-ansible
36 pip install -r {envdir}/tmp/ceph-ansible/tests/requirements.txt
37
38 bash {toxinidir}/../scripts/vagrant_up.sh {env:VAGRANT_UP_FLAGS:"--no-provision"} {posargs:--provider=virtualbox}
39 bash {toxinidir}/../scripts/generate_ssh_config.sh {changedir}
40
41 cp {toxinidir}/../playbooks/deploy.yml {envdir}/tmp/ceph-ansible
42
43 # use ceph-ansible to deploy a ceph cluster on the vms
44 ansible-playbook -vv -i {changedir}/hosts {envdir}/tmp/ceph-ansible/deploy.yml --extra-vars "fetch_directory={changedir}/fetch ceph_dev_branch={env:CEPH_DEV_BRANCH:master} ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} toxinidir={toxinidir}"
45
46 # prepare nodes for testing with testinfra
47 ansible-playbook -vv -i {changedir}/hosts {envdir}/tmp/ceph-ansible/tests/functional/setup.yml
48
49 # test cluster state using ceph-ansible tests
50 testinfra -n 4 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts {envdir}/tmp/ceph-ansible/tests/functional/tests
51
52 # make ceph-volume simple take over all the OSDs that got deployed, disabling ceph-disk
53 ansible-playbook -vv -i {changedir}/hosts {changedir}/test.yml
54
55 # reboot all vms
56 bash {toxinidir}/../scripts/vagrant_reload.sh {env:VAGRANT_UP_FLAGS:"--no-provision"} {posargs:--provider=virtualbox}
57
58 # wait 2 minutes for services to be ready
59 sleep 120
60
61 # retest to ensure cluster came back up correctly after rebooting
62 testinfra -n 4 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts {envdir}/tmp/ceph-ansible/tests/functional/tests
63
64 vagrant destroy --force