2016-11-05 01:25:06 +08:00
|
|
|
[tox]
|
2017-04-06 02:36:51 +08:00
|
|
|
envlist = {jewel,kraken,rhcs}-{ansible2.2}-{xenial_cluster,journal_collocation,centos7_cluster,dmcrypt_journal,dmcrypt_journal_collocation,docker_cluster,purge_cluster,purge_dmcrypt,docker_dedicated_journal,docker_dmcrypt_journal_collocation,update_dmcrypt,update_cluster,cluster}
|
2016-11-05 01:25:06 +08:00
|
|
|
skipsdist = True
|
|
|
|
|
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=
|
|
|
|
cp {toxinidir}/infrastructure-playbooks/purge-cluster.yml {toxinidir}/purge-cluster.yml
|
2017-05-03 00:15:23 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/purge-cluster.yml --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:jewel} \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
"
|
2017-01-27 00:38:10 +08:00
|
|
|
# set up the cluster again
|
2017-05-03 00:15:23 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/site.yml.sample --extra-vars "\
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:jewel} \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
"
|
2017-01-27 00:38:10 +08:00
|
|
|
# test that the cluster can be redeployed in a healthy state
|
|
|
|
testinfra -n 4 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts {toxinidir}/tests/functional/tests
|
|
|
|
|
2017-02-18 04:33:30 +08:00
|
|
|
# extra commands for performing a rolling update
|
|
|
|
# currently this hardcodes the release to kraken
|
|
|
|
# as we're still installing jewel by default
|
|
|
|
[update]
|
|
|
|
commands=
|
|
|
|
cp {toxinidir}/infrastructure-playbooks/rolling_update.yml {toxinidir}/rolling_update.yml
|
2017-05-03 00:15:23 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/rolling_update.yml --extra-vars "\
|
|
|
|
ireallymeanit=yes \
|
|
|
|
ceph_stable_release={env:UPDATE_CEPH_STABLE_RELEASE:kraken} \
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
"
|
2017-02-18 04:33:30 +08:00
|
|
|
|
|
|
|
testinfra -n 4 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts {toxinidir}/tests/functional/tests
|
|
|
|
|
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-01-11 06:56:07 +08:00
|
|
|
cp
|
2016-11-05 01:25:06 +08:00
|
|
|
passenv=*
|
|
|
|
setenv=
|
2016-11-05 01:49:18 +08:00
|
|
|
ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config
|
2016-11-05 01:25:06 +08:00
|
|
|
ANSIBLE_ACTION_PLUGINS = {toxinidir}/plugins/actions
|
2016-12-16 02:23:17 +08:00
|
|
|
# only available for ansible >= 2.2
|
|
|
|
ANSIBLE_STDOUT_CALLBACK = debug
|
2016-12-02 00:19:19 +08:00
|
|
|
docker_cluster: PLAYBOOK = site-docker.yml.sample
|
2017-02-11 00:37:52 +08:00
|
|
|
docker_dedicated_journal: PLAYBOOK = site-docker.yml.sample
|
2017-03-22 22:16:06 +08:00
|
|
|
docker_dmcrypt_journal_collocation: PLAYBOOK = site-docker.yml.sample
|
2017-03-22 23:14:41 +08:00
|
|
|
rhcs: CEPH_RHCS = true
|
2017-04-04 05:11:55 +08:00
|
|
|
jewel: CEPH_STABLE_RELEASE = jewel
|
2017-05-02 03:08:55 +08:00
|
|
|
jewel: CEPH_DOCKER_IMAGE_TAG = tag-build-master-jewel-centos-7
|
2017-04-04 05:11:55 +08:00
|
|
|
kraken: CEPH_STABLE_RELEASE = kraken
|
|
|
|
kraken: UPDATE_CEPH_STABLE_RELEASE = luminous
|
2016-11-05 01:25:06 +08:00
|
|
|
deps=
|
2016-11-09 00:34:16 +08:00
|
|
|
ansible1.9: ansible==1.9.4
|
2016-11-05 01:25:06 +08:00
|
|
|
ansible2.1: ansible==2.1
|
2017-04-05 19:38:58 +08:00
|
|
|
ansible2.2: ansible==2.2.2
|
2016-11-05 01:25:06 +08:00
|
|
|
-r{toxinidir}/tests/requirements.txt
|
|
|
|
changedir=
|
2016-11-29 05:05:48 +08:00
|
|
|
# tests a 1 mon, 1 osd, 1 mds and 1 rgw xenial cluster using raw_multi_journal OSD scenario
|
2016-12-02 06:48:06 +08:00
|
|
|
xenial_cluster: {toxinidir}/tests/functional/ubuntu/16.04/cluster
|
2016-11-29 05:02:16 +08:00
|
|
|
# tests a 1 mon 1 osd centos7 cluster using journal_collocation OSD scenario
|
2016-11-30 04:01:31 +08:00
|
|
|
journal_collocation: {toxinidir}/tests/functional/centos/7/journal-collocation
|
2016-11-29 01:20:31 +08:00
|
|
|
# tests a 1 mon 1 osd centos7 cluster using dmcrypt_dedicated_journal OSD scenario
|
2016-11-30 04:01:31 +08:00
|
|
|
dmcrypt_journal: {toxinidir}/tests/functional/centos/7/dmcrypt-dedicated-journal
|
2016-11-29 02:03:00 +08:00
|
|
|
# tests a 1 mon 1 osd centos7 cluster using dmcrypt_journal_collocation OSD scenario
|
2016-11-30 04:01:31 +08:00
|
|
|
dmcrypt_journal_collocation: {toxinidir}/tests/functional/centos/7/dmcrypt-journal-collocation
|
2016-11-29 05:10:07 +08:00
|
|
|
# tests a 1 mon, 1 osd, 1 mds and 1 rgw centos7 cluster using raw_multi_journal OSD scenario
|
2016-12-02 06:59:27 +08:00
|
|
|
centos7_cluster: {toxinidir}/tests/functional/centos/7/cluster
|
2017-04-06 02:36:51 +08:00
|
|
|
# an alias for centos7_cluster, this makes the name better suited for rhcs testing
|
|
|
|
cluster: {toxinidir}/tests/functional/centos/7/cluster
|
2016-12-01 02:20:07 +08:00
|
|
|
# tests a 1 mon, 1 osd, 1 mds and 1 rgw centos7 cluster using docker
|
|
|
|
docker_cluster: {toxinidir}/tests/functional/centos/7/docker-cluster
|
2017-02-11 00:37:52 +08:00
|
|
|
docker_dedicated_journal: {toxinidir}/tests/functional/centos/7/docker-cluster-dedicated-journal
|
2017-02-17 04:25:29 +08:00
|
|
|
docker_dmcrypt_journal_collocation: {toxinidir}/tests/functional/centos/7/docker-cluster-dmcrypt-journal-collocation
|
2017-01-27 20:12:10 +08:00
|
|
|
purge_cluster: {toxinidir}/tests/functional/ubuntu/16.04/cluster
|
2017-01-27 00:38:10 +08:00
|
|
|
purge_dmcrypt: {toxinidir}/tests/functional/centos/7/dmcrypt-dedicated-journal
|
2017-02-18 04:33:30 +08:00
|
|
|
update_dmcrypt: {toxinidir}/tests/functional/centos/7/dmcrypt-dedicated-journal
|
2017-03-08 04:05:03 +08:00
|
|
|
update_cluster: {toxinidir}/tests/functional/centos/7/cluster
|
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"
|
2017-03-22 23:14:41 +08:00
|
|
|
|
2016-11-09 07:00:09 +08:00
|
|
|
vagrant up --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
|
|
|
|
2017-05-03 04:49:50 +08:00
|
|
|
rhcs: ansible-playbook -vv -i {changedir}/hosts {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
|
|
|
|
2017-05-03 00:15:23 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
|
|
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
|
|
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:jewel} \
|
|
|
|
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} \
|
|
|
|
"
|
2017-03-16 19:16:09 +08:00
|
|
|
|
2016-12-04 10:08:53 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/tests/functional/setup.yml
|
2016-11-05 01:25:06 +08:00
|
|
|
|
2016-12-04 10:09:37 +08:00
|
|
|
testinfra -n 4 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts {toxinidir}/tests/functional/tests
|
2016-12-23 04:13:08 +08:00
|
|
|
|
2017-01-27 00:38:10 +08:00
|
|
|
purge_cluster: {[purge]commands}
|
|
|
|
purge_dmcrypt: {[purge]commands}
|
2017-02-18 04:33:30 +08:00
|
|
|
update_dmcrypt: {[update]commands}
|
2017-03-08 04:05:03 +08:00
|
|
|
update_cluster: {[update]commands}
|
2017-01-27 00:38:10 +08:00
|
|
|
|
2016-11-05 02:01:28 +08:00
|
|
|
vagrant destroy --force
|