mirror of https://github.com/ceph/ceph-ansible.git
66 lines
3.0 KiB
INI
66 lines
3.0 KiB
INI
[tox]
|
|
envlist = centos-{container,non_container}-filestore_to_bluestore
|
|
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
whitelist_externals =
|
|
vagrant
|
|
bash
|
|
git
|
|
pip
|
|
passenv=*
|
|
setenv=
|
|
ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey
|
|
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/stream8
|
|
centos-container: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
|
|
|
|
# Set the ansible inventory host file to be used according to which distrib we are running on
|
|
INVENTORY = {env:_INVENTORY:hosts}
|
|
container: CONTAINER_DIR = /container
|
|
container: PLAYBOOK = site-container.yml.sample
|
|
non_container: PLAYBOOK = site.yml.sample
|
|
non_container: DEV_SETUP = True
|
|
|
|
CEPH_DOCKER_IMAGE_TAG = latest-main
|
|
|
|
deps= -r{toxinidir}/tests/requirements.txt
|
|
changedir={toxinidir}/tests/functional/filestore-to-bluestore{env:CONTAINER_DIR:}
|
|
commands=
|
|
bash {toxinidir}/tests/scripts/vagrant_up.sh --no-provision {posargs:--provider=virtualbox}
|
|
bash {toxinidir}/tests/scripts/generate_ssh_config.sh {changedir}
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/setup.yml
|
|
|
|
ansible-playbook -vv -i "localhost," -c local {toxinidir}/tests/functional/dev_setup.yml --extra-vars "dev_setup={env:DEV_SETUP:False} change_dir={changedir} ceph_dev_branch={env:CEPH_DEV_BRANCH:main} ceph_dev_sha1={env:CEPH_DEV_SHA1:latest}" --tags "vagrant_setup"
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml --limit 'osd0:osd1'
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml --limit 'osd3:osd4' --tags partitions
|
|
|
|
# deploy the cluster
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:main} \
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
ceph_docker_registry_auth=True \
|
|
ceph_docker_registry_username={env:DOCKER_HUB_USERNAME} \
|
|
ceph_docker_registry_password={env:DOCKER_HUB_PASSWORD} \
|
|
"
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/filestore-to-bluestore.yml --limit osds --extra-vars "\
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
|
ceph_dev_branch={env:CEPH_DEV_BRANCH:main} \
|
|
ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} \
|
|
"
|
|
|
|
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"
|
|
|
|
vagrant destroy --force
|