mirror of https://github.com/ceph/ceph-ansible.git
tests: fix path to inventory host file in tox-update.ini
the path had `/{env:CONTAINER_DIR:}` which is already added in `changedir=` section. That led to a wrong path so the initial deployment couldn't complete. Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/4215/head
parent
bf17099964
commit
018297957e
|
@ -51,7 +51,7 @@ commands=
|
||||||
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/setup.yml
|
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/setup.yml
|
||||||
|
|
||||||
# deploy the cluster
|
# deploy the cluster
|
||||||
ansible-playbook -vv -i {changedir}/{env:CONTAINER_DIR:}/hosts {toxinidir}/{env:PLAYBOOK:site.yml.sample} --limit 'all:!iscsigws' --extra-vars "\
|
ansible-playbook -vv -i {changedir}/hosts {toxinidir}/{env:PLAYBOOK:site.yml.sample} --limit 'all:!iscsigws' --extra-vars "\
|
||||||
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
|
||||||
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
|
||||||
ceph_stable_release={env:CEPH_STABLE_RELEASE:jewel} \
|
ceph_stable_release={env:CEPH_STABLE_RELEASE:jewel} \
|
||||||
|
|
Loading…
Reference in New Issue