skyline-apiserver/tools/post_install.sh
Boxiang Zhu eb59b2614d fix: Remove invalid panko policy
1. remove invalid panko policy
2. remove install panko from post_install.sh
3. update policy

Change-Id: Icb23e4ff34ff47952294f711ddabd36cc9df706e
2022-08-17 14:05:06 +08:00

26 lines
422 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"
BRANCH=`git rev-parse --abbrev-ref HEAD`
for project in ${INSTALL_PROJECTS}
do
pip install -U git+https://opendev.org/openstack/${project}@${BRANCH}
done