From 6693f08db68626e27033a66e9751952be75ce7bc Mon Sep 17 00:00:00 2001 From: Rikimaru Honjo Date: Sat, 9 Feb 2019 08:13:46 +0000 Subject: [PATCH] Improve description about installing with devstack LXD_BACKEND_DRIVER=zfs should be specified in local.conf if LXD version is 3.0. In addition, LXD_BACKEND_DRIVER=zfs requires zfs 0.7.0 or higher. This patch adds those information to README and local.conf.sammple. Change-Id: I1692aefd2c4e8daba57629c5f99559ec9593fa5d Closes-Bug: #1815272 Closes-Bug: #1815273 --- README.md | 4 ++++ devstack/local.conf.sample | 3 +++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 46ebc246..da4cc9ca 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,10 @@ following in your devstack `local.conf`: ``` [[local|localrc]] enable_plugin nova-lxd https://git.openstack.org/openstack/nova-lxd + +# You should enable the following if you use lxd 3.0. +# In addition, this setting requires zfs >= 0.7.0. +#LXD_BACKEND_DRIVER=zfs ``` Change git repositories as needed (it's probably not very useful to point to the main diff --git a/devstack/local.conf.sample b/devstack/local.conf.sample index d4547423..41ff1ab7 100644 --- a/devstack/local.conf.sample +++ b/devstack/local.conf.sample @@ -22,3 +22,6 @@ disable_service n-net # enable nova-lxd enable_plugin nova-lxd https://git.openstack.org/openstack/nova-lxd +# You should enable the following if you use lxd 3.0. +# In addition, this setting requires zfs >= 0.7.0. +#LXD_BACKEND_DRIVER=zfs