Merge "Use configurable constraints to install clients"

This commit is contained in:
Zuul 2019-09-27 10:42:22 +00:00 committed by Gerrit Code Review
commit 7337936687
2 changed files with 6 additions and 2 deletions

View File

@ -16,7 +16,9 @@
set -xe
sudo -H -E pip install python-openstackclient python-heatclient python-ironicclient
sudo -H -E pip install \
-c${UPPER_CONSTRAINTS_FILE:=https://releases.openstack.org/constraints/upper/master} \
python-openstackclient python-heatclient python-ironicclient
sudo -H mkdir -p /etc/openstack
cat << EOF | sudo -H tee -a /etc/openstack/clouds.yaml

View File

@ -17,7 +17,9 @@
set -xe
sudo -H -E pip install "cmd2<=0.8.7"
sudo -H -E pip install python-openstackclient python-heatclient --ignore-installed
sudo -H -E pip install \
-c${UPPER_CONSTRAINTS_FILE:=https://releases.openstack.org/constraints/upper/master} \
python-openstackclient python-heatclient --ignore-installed
sudo -H mkdir -p /etc/openstack
sudo -H chown -R $(id -un): /etc/openstack