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]
|
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
|
2022-07-29 17:15:17 +08:00
|
|
|
ANSIBLE_COLLECTIONS_PATH = {envdir}/ansible_collections
|
2019-03-20 20:42:00 +08:00
|
|
|
ANSIBLE_CONFIG = {toxinidir}/ansible.cfg
|
2022-07-29 17:15:17 +08:00
|
|
|
ANSIBLE_CALLBACK_ENABLED = profile_tasks
|
2019-03-20 20:42:00 +08:00
|
|
|
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
|
|
|
|
|
2022-05-25 02:40:00 +08:00
|
|
|
UPDATE_CEPH_DOCKER_IMAGE_TAG = latest-main
|
|
|
|
UPDATE_CEPH_DEV_BRANCH = main
|
2019-03-20 20:42:00 +08:00
|
|
|
UPDATE_CEPH_DEV_SHA1 = latest
|
|
|
|
ROLLING_UPDATE = True
|
2020-01-07 00:31:46 +08:00
|
|
|
deps= -r{toxinidir}/tests/requirements.txt
|
2019-03-20 20:42:00 +08:00
|
|
|
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}
|
|
|
|
|
2022-07-29 17:15:17 +08:00
|
|
|
ansible-galaxy collection install -r {toxinidir}/requirements.yml -v -p {envdir}/ansible_collections
|
|
|
|
|
2020-01-07 00:31:46 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/setup.yml
|
2019-03-20 20:42:00 +08:00
|
|
|
|
2022-06-15 00:18:36 +08:00
|
|
|
# # use the stable-7.0 branch to deploy an octopus cluster
|
|
|
|
# git clone -b stable-7.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'
|
|
|
|
# # configure lvm, we exclude osd2 given this node uses lvm batch scenario (see corresponding inventory host file)
|
|
|
|
# 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"'
|
|
|
|
|
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)
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml --limit 'osds:!osd2'
|
2019-03-20 20:42:00 +08:00
|
|
|
|
2022-06-22 16:11:40 +08:00
|
|
|
non_container: ansible-playbook -vv -i "localhost," -c local {toxinidir}/tests/functional/dev_setup.yml --extra-vars "dev_setup=True change_dir={changedir} ceph_dev_branch={env:UPDATE_CEPH_DEV_BRANCH:main} ceph_dev_sha1={env:UPDATE_CEPH_DEV_SHA1:latest}" --tags "vagrant_setup"
|
2020-01-07 00:31:46 +08:00
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
2022-06-15 15:16:26 +08:00
|
|
|
yes_i_know=true \
|
2019-03-20 20:42:00 +08:00
|
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
2022-05-25 02:40:00 +08:00
|
|
|
ceph_dev_branch={env:UPDATE_CEPH_DEV_BRANCH:main} \
|
2022-06-22 16:11:40 +08:00
|
|
|
ceph_dev_sha1={env:UPDATE_CEPH_DEV_SHA1:latest} \
|
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-04-10 20:17:36 +08:00
|
|
|
"
|
2019-03-20 20:42:00 +08:00
|
|
|
|
2022-06-15 00:18:36 +08:00
|
|
|
# pip uninstall -y ansible
|
|
|
|
# pip install -r {toxinidir}/tests/requirements.txt
|
2022-07-29 17:15:17 +08:00
|
|
|
# ansible-galaxy collection install -r {toxinidir}/requirements.yml -v -p {envdir}/ansible_collections
|
2022-06-15 00:18:36 +08:00
|
|
|
|
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 \
|
2022-05-25 02:40:00 +08:00
|
|
|
ceph_dev_branch={env:UPDATE_CEPH_DEV_BRANCH:main} \
|
2022-06-22 16:11:40 +08:00
|
|
|
ceph_dev_sha1={env:UPDATE_CEPH_DEV_SHA1:latest} \
|
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=quincy 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
|