mirror of https://github.com/ceph/ceph-ansible.git
41 lines
1.2 KiB
INI
41 lines
1.2 KiB
INI
[tox]
|
|
envlist = centos-container-cephadm
|
|
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
allowlist_externals =
|
|
vagrant
|
|
bash
|
|
pip
|
|
rm
|
|
passenv=*
|
|
sitepackages=True
|
|
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_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/stream9
|
|
|
|
deps= -r{toxinidir}/tests/requirements.txt
|
|
changedir= {toxinidir}/tests/functional/cephadm
|
|
|
|
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}/hosts {toxinidir}/infrastructure-playbooks/cephadm.yml --extra-vars "\
|
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
|
ceph_docker_registry_auth=True \
|
|
ceph_docker_registry_username={env:DOCKER_HUB_USERNAME} \
|
|
ceph_docker_registry_password={env:DOCKER_HUB_PASSWORD} \
|
|
"
|
|
|
|
vagrant destroy -f
|