mirror of https://github.com/ceph/ceph-ansible.git
82 lines
4.6 KiB
INI
82 lines
4.6 KiB
INI
[tox]
|
|
envlist = centos-{container,non_container}-update
|
|
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
allowlist_externals =
|
|
vagrant
|
|
bash
|
|
git
|
|
pip
|
|
passenv=*
|
|
setenv=
|
|
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
|
|
ANSIBLE_COLLECTIONS_PATH = {envdir}/ansible_collections
|
|
ANSIBLE_CONFIG = {toxinidir}/ansible.cfg
|
|
ANSIBLE_CALLBACK_ENABLED = 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
|
|
CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9
|
|
|
|
INVENTORY = {env:_INVENTORY:hosts}
|
|
container: CONTAINER_DIR = /container
|
|
container: PLAYBOOK = site-container.yml.sample
|
|
non_container: PLAYBOOK = site.yml.sample
|
|
|
|
UPDATE_CEPH_DOCKER_IMAGE_TAG = latest-reef
|
|
UPDATE_CEPH_DEV_BRANCH = main
|
|
UPDATE_CEPH_DEV_SHA1 = latest
|
|
ROLLING_UPDATE = True
|
|
deps= -r{toxinidir}/tests/requirements.txt
|
|
changedir={toxinidir}/tests/functional/all_daemons{env:CONTAINER_DIR:}
|
|
commands=
|
|
# 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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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''
|
|
|
|
# configure lvm, we exclude osd2 given this node uses lvm batch scenario (see corresponding inventory host file)
|
|
ansible-playbook -vv --diff -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml --limit 'osds:!osd2'
|
|
|
|
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 "\
|
|
yes_i_know=true \
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
|
container_package_name=podman \
|
|
container_service_name=podman \
|
|
container_binary=podman \
|
|
ceph_docker_registry_auth=True \
|
|
ceph_docker_registry_username={env:DOCKER_HUB_USERNAME} \
|
|
ceph_docker_registry_password={env:DOCKER_HUB_PASSWORD} \
|
|
"
|
|
|
|
pip uninstall -y ansible
|
|
pip install -r {toxinidir}/tests/requirements.txt
|
|
ansible-galaxy collection install -r {toxinidir}/requirements.yml -v -p {envdir}/ansible_collections
|
|
|
|
ansible-playbook -vv --diff -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/rolling_update.yml --extra-vars "\
|
|
ireallymeanit=yes \
|
|
ceph_docker_registry_auth=True \
|
|
ceph_docker_registry_username={env:DOCKER_HUB_USERNAME} \
|
|
ceph_docker_registry_password={env:DOCKER_HUB_PASSWORD} \
|
|
"
|
|
|
|
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"
|
|
|
|
vagrant destroy --force
|