Document how to enable Nova driver in devstack

Change-Id: Ib4b5a0a0abcefca9ac35606b34e77050459088f0
This commit is contained in:
Hongbin Lu 2016-11-20 16:12:36 -06:00
parent 3438316954
commit f834790edb
1 changed files with 22 additions and 0 deletions

View File

@ -88,6 +88,28 @@ required OpenStack services::
SERVICE_PASSWORD=password
ADMIN_PASSWORD=password
enable_plugin zun https://git.openstack.org/openstack/zun
# Optional: uncomment to enable the Zun UI plugin in Horizon
# enable_plugin zun-ui https://git.openstack.org/openstack/zun-ui
END
By default, devstack will enable docker driver in Zun. Alternatively, you can
enable nova-docker driver instead. If nova-docker driver is enabled, zun will
use Nova to manage `container sandboxes <https://review.openstack.org/#/c/365754/>`_.
Simply speaking, you should choose nova-docker driver if you want to get
containers with networking provided by Neutron. Otherwise, choose docker
driver::
cat >> /opt/stack/devstack/local.conf << END
ZUN_DRIVER=nova-docker
IP_VERSION=4
disable_service n-net
enable_service q-svc
enable_service q-agt
enable_service q-dhcp
enable_service q-l3
enable_service q-meta
enable_service neutron
END
More devstack configuration information can be found at