Skip to content

Commit 5b2d0b2

Browse files
Jenkinsopenstack-gerrit
authored andcommitted
Merge "Invite python-openstackclient to the party."
2 parents a50d4f8 + 77a4e3a commit 5b2d0b2

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

stack.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ GLANCECLIENT_DIR=$DEST/python-glanceclient
205205
KEYSTONE_DIR=$DEST/keystone
206206
NOVACLIENT_DIR=$DEST/python-novaclient
207207
KEYSTONECLIENT_DIR=$DEST/python-keystoneclient
208+
OPENSTACKCLIENT_DIR=$DEST/python-openstackclient
208209
NOVNC_DIR=$DEST/noVNC
209210
SWIFT_DIR=$DEST/swift
210211
QUANTUM_DIR=$DEST/quantum
@@ -644,6 +645,7 @@ git_clone $NOVA_REPO $NOVA_DIR $NOVA_BRANCH
644645
# python client library to nova that horizon (and others) use
645646
git_clone $KEYSTONECLIENT_REPO $KEYSTONECLIENT_DIR $KEYSTONECLIENT_BRANCH
646647
git_clone $NOVACLIENT_REPO $NOVACLIENT_DIR $NOVACLIENT_BRANCH
648+
git_clone $OPENSTACKCLIENT_REPO $OPENSTACKCLIENT_DIR $OPENSTACKCLIENT_BRANCH
647649
git_clone $GLANCECLIENT_REPO $GLANCECLIENT_DIR $GLANCECLIENT_BRANCH
648650

649651
# glance, swift middleware and nova api needs keystone middleware
@@ -691,6 +693,7 @@ fi
691693
# allowing ``import nova`` or ``import glance.client``
692694
cd $KEYSTONECLIENT_DIR; sudo python setup.py develop
693695
cd $NOVACLIENT_DIR; sudo python setup.py develop
696+
cd $OPENSTACKCLIENT_DIR; sudo python setup.py develop
694697
if is_service_enabled key g-api n-api swift; then
695698
cd $KEYSTONE_DIR; sudo python setup.py develop
696699
fi

stackrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ HORIZON_BRANCH=master
4141
NOVACLIENT_REPO=https://github.com/openstack/python-novaclient.git
4242
NOVACLIENT_BRANCH=master
4343

44+
# Shared openstack python client library
45+
OPENSTACKCLIENT_REPO=https://github.com/openstack/python-openstackclient.git
46+
OPENSTACKCLIENT_BRANCH=master
47+
4448
# python keystone client library to nova that horizon uses
4549
KEYSTONECLIENT_REPO=https://github.com/openstack/python-keystoneclient
4650
KEYSTONECLIENT_BRANCH=master

0 commit comments

Comments
 (0)