fe56f82f19
add masakari and designate policies file and configs. Change-Id: Ic2d3431df3cb8d33e74d061337514ea3d91bb7ac
28 lines
453 B
Bash
Executable File
28 lines
453 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
INSTALL_PROJECTS="keystone \
|
|
placement \
|
|
nova \
|
|
cinder \
|
|
glance \
|
|
trove \
|
|
neutron neutron-vpnaas \
|
|
heat \
|
|
ironic \
|
|
ironic-inspector \
|
|
octavia \
|
|
manila \
|
|
magnum \
|
|
zun\
|
|
barbican \
|
|
designate \
|
|
masakari"
|
|
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
|
|
|
for project in ${INSTALL_PROJECTS}
|
|
do
|
|
pip install -U git+https://opendev.org/openstack/${project}@${BRANCH}
|
|
done
|