2019-05-23 16:49:54 +08:00
|
|
|
[tox]
|
2019-10-08 23:23:08 +08:00
|
|
|
envlist = centos-container-podman
|
2019-05-23 16:49:54 +08:00
|
|
|
|
|
|
|
skipsdist = True
|
|
|
|
|
|
|
|
[testenv]
|
2022-05-25 02:43:05 +08:00
|
|
|
allowlist_externals =
|
2019-05-23 16:49:54 +08:00
|
|
|
vagrant
|
|
|
|
bash
|
|
|
|
pip
|
|
|
|
rm
|
|
|
|
passenv=*
|
|
|
|
sitepackages=True
|
|
|
|
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-05-23 16:49:54 +08:00
|
|
|
ANSIBLE_CONFIG = {toxinidir}/ansible.cfg
|
2022-07-29 17:15:17 +08:00
|
|
|
ANSIBLE_CALLBACK_ENABLED = profile_tasks
|
2019-05-23 16:49:54 +08:00
|
|
|
ANSIBLE_KEEP_REMOTE_FILES = 1
|
|
|
|
ANSIBLE_CACHE_PLUGIN = memory
|
|
|
|
ANSIBLE_GATHERING = implicit
|
|
|
|
# only available for ansible >= 2.5
|
|
|
|
ANSIBLE_STDOUT_CALLBACK = yaml
|
|
|
|
# Set the vagrant box image to use
|
2022-01-31 20:42:10 +08:00
|
|
|
CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
|
2019-05-23 16:49:54 +08:00
|
|
|
|
|
|
|
# Set the ansible inventory host file to be used according to which distrib we are running on
|
|
|
|
INVENTORY = {env:_INVENTORY:hosts}
|
2019-11-19 04:05:16 +08:00
|
|
|
PLAYBOOK = site-container.yml.sample
|
2019-05-23 16:49:54 +08:00
|
|
|
|
|
|
|
deps= -r{toxinidir}/tests/requirements.txt
|
|
|
|
changedir= {toxinidir}/tests/functional/podman
|
|
|
|
|
|
|
|
commands=
|
2022-07-29 17:15:17 +08:00
|
|
|
ansible-galaxy collection install -r {toxinidir}/requirements.yml -v -p {envdir}/ansible_collections
|
2019-05-23 16:49:54 +08:00
|
|
|
bash {toxinidir}/tests/scripts/vagrant_up.sh --no-provision {posargs:--provider=virtualbox}
|
|
|
|
bash {toxinidir}/tests/scripts/generate_ssh_config.sh {changedir}
|
|
|
|
|
|
|
|
# configure lvm
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/lvm_setup.yml
|
|
|
|
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/setup.yml
|
|
|
|
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/{env:PLAYBOOK:site.yml.sample} --extra-vars "\
|
|
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
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-05-23 16:49:54 +08:00
|
|
|
"
|
|
|
|
|
|
|
|
# test cluster state using ceph-ansible tests
|
2019-06-29 04:07:20 +08:00
|
|
|
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-05-23 16:49:54 +08:00
|
|
|
|
|
|
|
# reboot all vms
|
|
|
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/reboot.yml
|
|
|
|
|
|
|
|
# retest to ensure cluster came back up correctly after rebooting
|
|
|
|
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-09-25 01:13:31 +08:00
|
|
|
vagrant destroy -f
|