2019-03-20 20:42:00 +08:00
[tox]
2020-07-22 22:29:55 +08:00
envlist = centos-{container,non_container}-update
2019-03-20 20:42:00 +08:00
skipsdist = True
[testenv]
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-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
2022-01-31 20:42:10 +08:00
centos-non_container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
2019-03-20 20:42:00 +08:00
INVENTORY = {env:_INVENTORY:hosts}
container: CONTAINER_DIR = /container
2020-03-31 20:08:30 +08:00
container: PLAYBOOK = site-container.yml.sample
2019-03-20 20:42:00 +08:00
non_container: PLAYBOOK = site.yml.sample
2021-06-29 23:59:20 +08:00
CEPH_DOCKER_IMAGE_TAG = latest-octopus
UPDATE_CEPH_DOCKER_IMAGE_TAG = latest-pacific
2019-03-20 20:42:00 +08:00
ROLLING_UPDATE = True
changedir = {toxinidir}/tests/functional/all_daemons{env:CONTAINER_DIR:}
commands =
2020-01-16 00:02:37 +08:00
bash {toxinidir}/tests/scripts/vagrant_up.sh --no-provision {posargs:--provider = virtualbox}
2019-03-20 20:42:00 +08:00
bash {toxinidir}/tests/scripts/generate_ssh_config.sh {changedir}
2021-02-10 21:42:27 +08:00
# use the stable-5.0 branch to deploy an octopus cluster
git clone -b stable-5.0 --single-branch https://github.com/ceph/ceph-ansible.git {envdir}/tmp/ceph-ansible
pip install -r {envdir}/tmp/ceph-ansible/tests/requirements.txt
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 {envdir}/tmp/ceph-ansible/tests/functional/setup.yml'
2019-03-20 20:42:00 +08:00
2021-02-03 16:33:14 +08:00
# configure lvm, we exclude osd2 given this node uses lvm batch scenario (see corresponding inventory host file)
2021-02-10 21:42:27 +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 {envdir}/tmp/ceph-ansible/tests/functional/lvm_setup.yml --extra-vars "osd_scenario=lvm"'
2019-03-20 20:42:00 +08:00
2021-02-10 21:42:27 +08:00
# deploy the cluster
2021-06-14 20:08:32 +08:00
# passing ceph_nfs_rgw_access_key and ceph_nfs_rgw_secret_key because of a weird behavior in the CI:
# When rendering the ganesha.conf.j2 template, it complains because of undefined variables in the block "{% if nfs_obj_gw | bool %}" although we explicitly set this variable to false (see below).
2021-02-10 21:42:27 +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 {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-02-10 21:42:27 +08:00
ceph_docker_registry = {env:CEPH_DOCKER_REGISTRY:quay.ceph.io} \
ceph_docker_image = {env:CEPH_DOCKER_IMAGE:ceph-ci/daemon} \
2021-06-29 23:59:20 +08:00
ceph_docker_image_tag = {env:CEPH_DOCKER_IMAGE_TAG:latest-octopus} \
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} \
2021-06-14 20:08:32 +08:00
nfs_file_gw = True \
nfs_obj_gw = False \
ceph_nfs_rgw_access_key = fake_access_key \
ceph_nfs_rgw_secret_key = fake_secret_key \
2021-02-10 21:42:27 +08:00
"'
2021-04-15 15:32:26 +08:00
pip install -r {toxinidir}/tests/requirements.txt
2019-04-23 22:40:09 +08:00
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/rolling_update.yml --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} \
2021-06-14 20:08:32 +08:00
nfs_file_gw = True \
nfs_obj_gw = False \
2019-03-20 20:42:00 +08:00
"
2021-09-29 22:25:42 +08:00
bash -c "CEPH_STABLE_RELEASE = pacific 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"
2019-03-20 20:42:00 +08:00
vagrant destroy --force