Update after project rename
Change-Id: Id3a3788ef1ea4d1e3c7522909e9208dd9be89698
This commit is contained in:
parent
993ea96bc6
commit
ae09548afd
@ -1,4 +1,4 @@
|
|||||||
[gerrit]
|
[gerrit]
|
||||||
host=review.openstack.org
|
host=review.openstack.org
|
||||||
port=29418
|
port=29418
|
||||||
project=openstack/higgins.git
|
project=openstack/zun.git
|
||||||
|
@ -10,7 +10,7 @@ Note that this is a hard requirement.
|
|||||||
|
|
||||||
* Free software: Apache license
|
* Free software: Apache license
|
||||||
* Documentation: http://docs.openstack.org/developer/zun
|
* Documentation: http://docs.openstack.org/developer/zun
|
||||||
* Source: http://git.openstack.org/cgit/openstack/higgins
|
* Source: http://git.openstack.org/cgit/openstack/zun
|
||||||
* Bugs: http://bugs.launchpad.net/zun
|
* Bugs: http://bugs.launchpad.net/zun
|
||||||
* Blueprints:** https://blueprints.launchpad.net/zun
|
* Blueprints:** https://blueprints.launchpad.net/zun
|
||||||
* REST Client:** http://git.openstack.org/cgit/openstack/python-zunclient
|
* REST Client:** http://git.openstack.org/cgit/openstack/python-zunclient
|
||||||
|
@ -5,7 +5,7 @@ DevStack Integration
|
|||||||
This directory contains the files necessary to integrate zun with devstack.
|
This directory contains the files necessary to integrate zun with devstack.
|
||||||
|
|
||||||
Refer the quickstart guide at
|
Refer the quickstart guide at
|
||||||
https://github.com/openstack/higgins/blob/master/doc/source/dev/quickstart.rst
|
https://github.com/openstack/zun/blob/master/doc/source/dev/quickstart.rst
|
||||||
for more information on using devstack and zun.
|
for more information on using devstack and zun.
|
||||||
|
|
||||||
To install zun into devstack, add the following settings to enable the
|
To install zun into devstack, add the following settings to enable the
|
||||||
@ -13,7 +13,7 @@ zun plugin::
|
|||||||
|
|
||||||
cat > /opt/stack/devstack/local.conf << END
|
cat > /opt/stack/devstack/local.conf << END
|
||||||
[[local|localrc]]
|
[[local|localrc]]
|
||||||
enable_plugin zun https://git.openstack.org/openstack/higgins master
|
enable_plugin zun https://git.openstack.org/openstack/zun master
|
||||||
END
|
END
|
||||||
|
|
||||||
Then run devstack normally::
|
Then run devstack normally::
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
# Keep all devstack settings here instead of project-config for easy
|
# Keep all devstack settings here instead of project-config for easy
|
||||||
# maintain if we want to change devstack config settings in future.
|
# maintain if we want to change devstack config settings in future.
|
||||||
|
|
||||||
# Notes(eliqiao): Overwrite defaut ENABLED_SERVICES since currently higgins
|
# Notes(eliqiao): Overwrite defaut ENABLED_SERVICES since currently zun
|
||||||
# doesn't relay on any other OpenStack service yet.
|
# doesn't relay on any other OpenStack service yet.
|
||||||
OVERRIDE_ENABLED_SERVICES="dstat,key,mysql,rabbit"
|
OVERRIDE_ENABLED_SERVICES="dstat,key,mysql,rabbit"
|
||||||
export OVERRIDE_ENABLED_SERVICES
|
export OVERRIDE_ENABLED_SERVICES
|
||||||
|
@ -29,9 +29,9 @@ set +o xtrace
|
|||||||
# --------
|
# --------
|
||||||
|
|
||||||
# Set up default directories
|
# Set up default directories
|
||||||
ZUN_REPO=${ZUN_REPO:-${GIT_BASE}/openstack/higgins.git}
|
ZUN_REPO=${ZUN_REPO:-${GIT_BASE}/openstack/zun.git}
|
||||||
ZUN_BRANCH=${ZUN_BRANCH:-master}
|
ZUN_BRANCH=${ZUN_BRANCH:-master}
|
||||||
ZUN_DIR=$DEST/higgins
|
ZUN_DIR=$DEST/zun
|
||||||
|
|
||||||
GITREPO["python-zunclient"]=${ZUNCLIENT_REPO:-${GIT_BASE}/openstack/python-zunclient.git}
|
GITREPO["python-zunclient"]=${ZUNCLIENT_REPO:-${GIT_BASE}/openstack/python-zunclient.git}
|
||||||
GITBRANCH["python-zunclient"]=${ZUNCLIENT_BRANCH:-master}
|
GITBRANCH["python-zunclient"]=${ZUNCLIENT_BRANCH:-master}
|
||||||
|
@ -5,7 +5,7 @@ XTRACE=$(set +o | grep xtrace)
|
|||||||
set -o xtrace
|
set -o xtrace
|
||||||
|
|
||||||
echo_summary "zun's plugin.sh was called..."
|
echo_summary "zun's plugin.sh was called..."
|
||||||
source $DEST/higgins/devstack/lib/zun
|
source $DEST/zun/devstack/lib/zun
|
||||||
(set -o posix; set)
|
(set -o posix; set)
|
||||||
|
|
||||||
if is_service_enabled zun-api zun-compute; then
|
if is_service_enabled zun-api zun-compute; then
|
||||||
|
@ -40,8 +40,8 @@ Zun source code should be pulled directly from git::
|
|||||||
|
|
||||||
# from your home or source directory
|
# from your home or source directory
|
||||||
cd ~
|
cd ~
|
||||||
git clone https://git.openstack.org/openstack/higgins
|
git clone https://git.openstack.org/openstack/zun
|
||||||
cd higgins
|
cd zun
|
||||||
|
|
||||||
All unit tests should be run using tox. To run Zun's entire test suite::
|
All unit tests should be run using tox. To run Zun's entire test suite::
|
||||||
|
|
||||||
@ -125,8 +125,8 @@ Create the service credentials for zun::
|
|||||||
Clone and install zun::
|
Clone and install zun::
|
||||||
|
|
||||||
cd ~
|
cd ~
|
||||||
git clone https://git.openstack.org/openstack/higgins
|
git clone https://git.openstack.org/openstack/zun
|
||||||
cd higgins
|
cd zun
|
||||||
sudo pip install -e .
|
sudo pip install -e .
|
||||||
|
|
||||||
Configure zun::
|
Configure zun::
|
||||||
|
@ -41,7 +41,7 @@ source $BASE/new/devstack/stackrc
|
|||||||
constraints="-c $REQUIREMENTS_DIR/upper-constraints.txt"
|
constraints="-c $REQUIREMENTS_DIR/upper-constraints.txt"
|
||||||
sudo -H pip install $constraints -U -r requirements.txt -r test-requirements.txt
|
sudo -H pip install $constraints -U -r requirements.txt -r test-requirements.txt
|
||||||
|
|
||||||
export ZUN_DIR="$BASE/new/higgins"
|
export ZUN_DIR="$BASE/new/zun"
|
||||||
sudo chown -R jenkins:stack $ZUN_DIR
|
sudo chown -R jenkins:stack $ZUN_DIR
|
||||||
|
|
||||||
# Use tempest to test zun api service
|
# Use tempest to test zun api service
|
||||||
|
Loading…
Reference in New Issue
Block a user