Fix Kuryr devstack plugin

Add needed changes to make Kuryr devstack pass the gate

Change-Id: I1590b6ee4900f2faa4927d408a3232db1332f40d
This commit is contained in:
Gal Sagie 2015-11-27 07:58:14 +02:00
parent cbca35cd3c
commit 58057cd711

View File

@ -17,11 +17,11 @@ set +o xtrace
function install_etcd_data_store {
if [ ! -f "/opt/stack/etcd/etcd-v2.1.1-linux-amd64/etcd" ]; then
if [ ! -f "$DEST/etcd/etcd-v2.1.1-linux-amd64/etcd" ]; then
echo "Installing etcd server"
mkdir /opt/stack/etcd
curl -L https://github.com/coreos/etcd/releases/download/v2.1.1/etcd-v2.1.1-linux-amd64.tar.gz -o $DEST/etcd/etcd-v2.1.1-linux-amd64.tar.gz
tar xzvf $DEST/etcd/etcd-v2.1.1-linux-amd64.tar.gz -C /opt/stack/etcd
mkdir $DEST/etcd
wget https://github.com/coreos/etcd/releases/download/v2.1.1/etcd-v2.1.1-linux-amd64.tar.gz -O $DEST/etcd/etcd-v2.1.1-linux-amd64.tar.gz
tar xzvf $DEST/etcd/etcd-v2.1.1-linux-amd64.tar.gz -C $DEST/etcd
fi
}