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=
|
2024-02-20 05:39:47 +08:00
|
|
|
ANSIBLE_SSH_ARGS = -F {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/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
|
2024-03-16 05:36:07 +08:00
|
|
|
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
|
|
|
|
|
2024-03-12 06:34:53 +08:00
|
|
|
UPDATE_CEPH_DOCKER_IMAGE_TAG = latest-reef
|
2022-05-25 02:40:00 +08:00
|
|
|
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=
|
2024-02-20 05:39:47 +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
|
2019-03-20 20:42:00 +08:00
|
|
|
|
2024-02-20 05:39:47 +08:00
|
|
|
bash {envdir}/tmp/ceph-ansible/tests/scripts/vagrant_up.sh {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:} --no-provision {posargs:--provider=virtualbox}
|
|
|
|
bash {envdir}/tmp/ceph-ansible/tests/scripts/generate_ssh_config.sh {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}
|
|
|
|
|
|
|
|
ansible-galaxy collection install -r {envdir}/tmp/ceph-ansible/requirements.yml -v -p {envdir}/ansible_collections
|
2022-07-29 17:15:17 +08:00
|
|
|
|
2024-02-20 05:39:47 +08:00
|
|
|
ansible-playbook -vv --diff -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
|
|
|
|
2024-02-20 05:39:47 +08:00
|
|
|
pip install -r {envdir}/tmp/ceph-ansible/tests/requirements.txt
|
|
|
|
bash -c 'ANSIBLE_CONFIG={envdir}/tmp/ceph-ansible/ansible.cfg ansible-playbook -vv --diff -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 --diff -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" --limit 'osds:!osd2''
|
2022-06-15 00:18:36 +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)
|
2024-02-18 18:50:29 +08:00
|
|
|
ansible-playbook -vv --diff -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml --limit 'osds:!osd2'
|
2019-03-20 20:42:00 +08:00
|
|
|
|
2024-03-16 05:36:07 +08:00
|
|
|
ansible-playbook -vv --diff -i {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/hosts {envdir}/tmp/ceph-ansible/{env:PLAYBOOK:site.yml.sample} --limit !nfs0 --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} \
|
2024-02-20 05:39:47 +08:00
|
|
|
container_package_name=podman \
|
|
|
|
container_service_name=podman \
|
|
|
|
container_binary=podman \
|
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
|
|
|
|
2024-02-20 05:39:47 +08:00
|
|
|
pip uninstall -y ansible
|
|
|
|
pip install -r {toxinidir}/tests/requirements.txt
|
|
|
|
ansible-galaxy collection install -r {toxinidir}/requirements.yml -v -p {envdir}/ansible_collections
|
2022-06-15 00:18:36 +08:00
|
|
|
|
2024-02-18 18:50:29 +08:00
|
|
|
ansible-playbook -vv --diff -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} \
|
2019-03-20 20:42:00 +08:00
|
|
|
"
|
|
|
|
|
2024-03-16 05:36:07 +08:00
|
|
|
bash -c "CEPH_STABLE_RELEASE=reef py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/hosts --ssh-config={envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/vagrant_ssh_config {toxinidir}/tests/functional/tests"
|
|
|
|
# bash -c "CEPH_STABLE_RELEASE=reef py.test --reruns 5 --reruns-delay 1 -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/hosts --ssh-config={envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/vagrant_ssh_config {toxinidir}/tests/functional/tests"
|
2019-03-20 20:42:00 +08:00
|
|
|
|
|
|
|
vagrant destroy --force
|