2019-03-20 20:42:00 +08:00
|
|
|
[tox]
|
2019-10-08 23:23:08 +08:00
|
|
|
envlist = {centos,ubuntu}-{container,non_container}-update
|
2019-03-20 20:42:00 +08:00
|
|
|
|
|
|
|
skipsdist = True
|
|
|
|
|
|
|
|
[testenv]
|
2022-05-25 02:43:05 +08:00
|
|
|
allowlist_externals =
|
2019-03-20 20:42:00 +08:00
|
|
|
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-03-20 20:42:00 +08:00
|
|
|
ANSIBLE_CONFIG = {toxinidir}/ansible.cfg
|
|
|
|
ANSIBLE_CALLBACK_WHITELIST = profile_tasks
|
|
|
|
ANSIBLE_CACHE_PLUGIN = memory
|
|
|
|
ANSIBLE_GATHERING = implicit
|
|
|
|
# only available for ansible >= 2.5
|
|
|
|
ANSIBLE_STDOUT_CALLBACK = yaml
|
|
|
|
# non_container: DEV_SETUP = True
|
|
|
|
# Set the vagrant box image to use
|
|
|
|
centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/7
|
|
|
|
centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/atomic-host
|
|
|
|
ubuntu: CEPH_ANSIBLE_VAGRANT_BOX = guits/ubuntu-bionic64
|
|
|
|
|
|
|
|
# Set the ansible inventory host file to be used according to which distrib we are running on
|
|
|
|
container: CONTAINER_DIR = /container
|
|
|
|
container: PLAYBOOK = site-docker.yml.sample
|
|
|
|
non_container: PLAYBOOK = site.yml.sample
|
|
|
|
|
2019-04-03 20:45:21 +08:00
|
|
|
CEPH_DOCKER_IMAGE_TAG = latest-luminous
|
2019-03-20 20:42:00 +08:00
|
|
|
ROLLING_UPDATE = True
|
|
|
|
|
|
|
|
changedir={toxinidir}/tests/functional/all_daemons{env:CONTAINER_DIR:}
|
|
|
|
commands=
|
|
|
|
vagrant up --no-provision {posargs:--provider=virtualbox}
|
|
|
|
bash {toxinidir}/tests/scripts/generate_ssh_config.sh {changedir}
|
|
|
|
|
|
|
|
# use the stable-3.2 branch to deploy a luminous cluster
|
2019-04-08 21:09:47 +08:00
|
|
|
git clone -b stable-3.2 --single-branch https://github.com/ceph/ceph-ansible.git {envdir}/tmp/ceph-ansible
|
2019-03-20 20:42:00 +08:00
|
|
|
pip install -r {envdir}/tmp/ceph-ansible/tests/requirements.txt
|
|
|
|
|
2020-03-05 05:52:24 +08:00
|
|
|
bash -c 'ANSIBLE_CONFIG={envdir}/tmp/ceph-ansible/ansible.cfg ansible-playbook -vv -i {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/hosts-upgrade-to-nautilus {envdir}/tmp/ceph-ansible/tests/functional/setup.yml'
|
2019-03-20 20:42:00 +08:00
|
|
|
|
|
|
|
# configure lvm
|
2020-03-05 05:52:24 +08:00
|
|
|
bash -c 'ANSIBLE_CONFIG={envdir}/tmp/ceph-ansible/ansible.cfg ansible-playbook -vv -i {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/hosts-upgrade-to-nautilus {envdir}/tmp/ceph-ansible/tests/functional/lvm_setup.yml --extra-vars "osd_scenario=lvm"'
|
2019-03-20 20:42:00 +08:00
|
|
|
|
2019-04-11 23:18:02 +08:00
|
|
|
# deploy the cluster
|
2020-03-05 05:52:24 +08:00
|
|
|
bash -c 'ANSIBLE_CONFIG={envdir}/tmp/ceph-ansible/ansible.cfg ansible-playbook -vv -i {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/hosts-upgrade-to-nautilus {envdir}/tmp/ceph-ansible/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
2019-03-20 20:42:00 +08:00
|
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
2021-09-29 22:25:42 +08:00
|
|
|
ceph_stable_release=luminous \
|
2022-12-06 20:14:07 +08:00
|
|
|
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:quay.io} \
|
|
|
|
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \
|
2019-04-03 20:45:21 +08:00
|
|
|
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-luminous} \
|
2019-09-11 00:23:19 +08:00
|
|
|
"'
|
2019-03-20 20:42:00 +08:00
|
|
|
|
|
|
|
pip install -r {toxinidir}/tests/requirements.txt
|
2020-03-05 05:52:24 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/infrastructure-playbooks/rolling_update.yml --limit 'all:!osd4' --extra-vars "\
|
2019-03-20 20:42:00 +08:00
|
|
|
ireallymeanit=yes \
|
2020-07-07 23:11:27 +08:00
|
|
|
ceph_docker_registry_auth=True \
|
|
|
|
ceph_docker_registry_username={env:DOCKER_HUB_USERNAME} \
|
|
|
|
ceph_docker_registry_password={env:DOCKER_HUB_PASSWORD} \
|
2019-03-20 20:42:00 +08:00
|
|
|
"
|
|
|
|
|
2021-09-29 22:25:42 +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 --hosts='ansible://osd[!s4]' --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests"
|
2019-03-20 20:42:00 +08:00
|
|
|
|
|
|
|
vagrant destroy --force
|