From 07a6cacd2a6d19fce29b43c63b352c5c45d97c4b Mon Sep 17 00:00:00 2001 From: Xia Bing Yao Date: Mon, 23 Nov 2015 16:09:11 +0800 Subject: [PATCH] Update some steps in quickstart-aio.rst Add some comments to let user look up the latest tag first, then execute command "git checkout ". Update old kilo stable branch to the latest liberty stable branch when you execute command "git clone -b ${BRANCH} ${REPO} /opt/openstack-ansible". Change-Id: I0597fbcc3950a99639174ab6398222fd3905caab --- doc/source/developer-docs/quickstart-aio.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/source/developer-docs/quickstart-aio.rst b/doc/source/developer-docs/quickstart-aio.rst index 67ab2b1154..e1c3494373 100644 --- a/doc/source/developer-docs/quickstart-aio.rst +++ b/doc/source/developer-docs/quickstart-aio.rst @@ -67,7 +67,11 @@ development) build it is usually best to checkout the latest tagged version. .. code-block:: bash - $ git checkout kilo + $ # List all existing tags. + $ git tag -l + + $ # Checkout the latest tag from the previous command. + $ git checkout 12.0.0 By default the scripts deploy all OpenStack services. At this point you may optionally adjust which services are deployed within your AIO build. Look at @@ -211,7 +215,7 @@ soon as the instance starts. Save this file as ``user_data.yml``: - export ANSIBLE_FORCE_COLOR=true - export PYTHONUNBUFFERED=1 - export REPO=https://github.com/openstack/openstack-ansible - - export BRANCH=kilo + - export BRANCH=liberty - git clone -b ${BRANCH} ${REPO} /opt/openstack-ansible - export DEPLOY_CEILOMETER="no" - cd /opt/openstack-ansible && scripts/bootstrap-aio.sh