forked from ceph/ceph-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: test podman against atomic os instead rhel8
the rhel8 image used is an outdated beta version, it is not worth it to maintain this image upstream, since it's possible to test podman with a newer version of centos/atomic-host image. Signed-off-by: Guillaume Abrioux <[email protected]>
- Loading branch information
Showing
18 changed files
with
92 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
[tox] | ||
envlist = dev-centos-container-podman | ||
|
||
skipsdist = True | ||
|
||
[testenv] | ||
whitelist_externals = | ||
vagrant | ||
bash | ||
pip | ||
sleep | ||
rm | ||
passenv=* | ||
sitepackages=True | ||
setenv= | ||
ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config | ||
ANSIBLE_CONFIG = {toxinidir}/ansible.cfg | ||
ANSIBLE_ACTION_PLUGINS = {toxinidir}/plugins/actions | ||
ANSIBLE_CALLBACK_PLUGINS = {toxinidir}/plugins/callback | ||
ANSIBLE_CALLBACK_WHITELIST = profile_tasks | ||
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 | ||
CEPH_ANSIBLE_VAGRANT_BOX = centos/atomic-host | ||
|
||
# Set the ansible inventory host file to be used according to which distrib we are running on | ||
INVENTORY = {env:_INVENTORY:hosts} | ||
PLAYBOOK = site-docker.yml.sample | ||
PURGE_PLAYBOOK = purge-docker-cluster.yml | ||
IS_PODMAN = TRUE | ||
CEPH_STABLE_RELEASE = nautilus | ||
|
||
deps= -r{toxinidir}/tests/requirements.txt | ||
changedir= {toxinidir}/tests/functional/podman | ||
|
||
commands= | ||
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} \ | ||
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \ | ||
ceph_docker_registry={env:CEPH_DOCKER_REGISTRY:docker.io} \ | ||
ceph_docker_image={env:CEPH_DOCKER_IMAGE:ceph/daemon} \ | ||
ceph_docker_image_tag={env:CEPH_DOCKER_IMAGE_TAG:latest-master} \ | ||
copy_admin_key={env:COPY_ADMIN_KEY:False} \ | ||
container_binary=podman \ | ||
container_package_name=podman \ | ||
container_service_name=podman \ | ||
container_binding_name=podman \ | ||
" | ||
|
||
# wait 30sec for services to be ready | ||
sleep 30 | ||
# test cluster state using ceph-ansible tests | ||
py.test -n 8 --durations=0 --sudo -v --connection=ansible --ansible-inventory={changedir}/{env:INVENTORY} --ssh-config={changedir}/vagrant_ssh_config {toxinidir}/tests/functional/tests | ||
# wait 30sec for services to be ready | ||
|
||
# reboot all vms | ||
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/reboot.yml | ||
|
||
# wait 30sec for services to be ready | ||
# 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 | ||
|
||
vagrant destroy -f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters