Add ansible-collections-openstack to requirements

Change-Id: I5ce30501ccdb652a4fec8c722e0dacaf6bfb452c
This commit is contained in:
Sagi Shnaidman 2020-06-10 16:52:46 +03:00
parent 694bfc80d3
commit 32ee3855ce
2 changed files with 13 additions and 1 deletions

View File

@ -7,6 +7,7 @@ git+https://opendev.org/openstack/ansible-config_template/#egg=ansible-config_te
git+https://opendev.org/openstack/ansible-role-collect-logs/#egg=ansible-role-collect-logs
git+https://opendev.org/openstack/openstack-tempest-skiplist/#egg=openstack-tempest-skiplist
git+https://opendev.org/openstack/tripleo-operator-ansible/#egg=tripleo-operator-ansible
git+https://opendev.org/openstack/ansible-collections-openstack/#egg=ansible-collections-openstack
git+https://opendev.org/openstack/tripleo-ci/#egg=tripleo-ci
git+https://opendev.org/openstack/tripleo-ansible/#egg=tripleo-ansible
# NOTE: tripleo-ansible, tripleo-ipa are required for some jobs

View File

@ -155,7 +155,18 @@ bootstrap () {
$(python_cmd) -m pip install --force-reinstall .
fi
popd
# pull in ansible-collections-openstack from source
$ZUUL_CLONER --cache-dir \
/opt/git \
https://opendev.org \
openstack/ansible-collections-openstack
pushd openstack/ansible-collections-openstack
if [ $OPT_CLEAN == 1 ]; then
$(python_cmd) -m pip install --no-cache-dir --force-reinstall .
else
$(python_cmd) -m pip install --force-reinstall .
fi
popd
# pull in tripleo-quickstart-extras from source
$ZUUL_CLONER --cache-dir \
/opt/git \