Update devstack installation quickstart

Depends-On: Iaf4d90bc6ee605f75cdede510774bd2261944790
Change-Id: I678c99578cd6eaacd87977a7e89fc859241270d2
This commit is contained in:
Kien Nguyen 2017-12-04 10:33:17 +07:00
parent b49990d037
commit 95a50be78e

View File

@ -22,7 +22,6 @@ Clone devstack::
# Create a root directory for devstack if needed
$ sudo mkdir -p /opt/stack
$ sudo chown $USER /opt/stack
$ git clone https://git.openstack.org/openstack-dev/devstack /opt/stack/devstack
We will run devstack with minimal local.conf settings required to enable
@ -34,6 +33,14 @@ required OpenStack services::
| sed "s/HOST_IP=.*/HOST_IP=$HOST_IP/" \
> /opt/stack/devstack/local.conf
.. note::
By default, *KURYR_CAPABILITY_SCOPE=global*. It will work in both
all-in-one and multi-node scenario. You still can change it to *local*
(in **all-in-one scenario only**)::
$ sed -i "s/KURYR_CAPABILITY_SCOPE=.*/KURYR_CAPABILITY_SCOPE=local/" /opt/stack/devstack/local.conf
More devstack configuration information can be found at `Devstack Configuration
<https://docs.openstack.org/devstack/latest/configuration.html>`_
@ -116,12 +123,6 @@ support. You also need to tell devstack where the SERVICE_HOST is::
| sed "s/SERVICE_HOST=.*/SERVICE_HOST=$SERVICE_HOST/" \
> /opt/stack/devstack/local.conf
.. note::
In multi-node scenario, kuryr-libnetwork config `capability_scope`
**must be** global (By default it is local), change in file
/etc/kuryr/kuryr.conf (all nodes): capability_scope = global
Run devstack::
$ cd /opt/stack/devstack