Merge "Add nova-lxd storage-pool option for ZFS storage backend"

This commit is contained in:
Jenkins 2017-01-17 02:31:34 +00:00 committed by Gerrit Code Review
commit ca8849b854
2 changed files with 7 additions and 0 deletions

View File

@ -452,3 +452,7 @@ lxd_bind_port: 8443
lxd_storage_backend: dir
# This needs to be set in the user_secrets.yml file.
#lxd_trust_password:
# This variable should be used with lxd when using a
# storage backend that utilizes storage pools
#lxd_storage_pool:

View File

@ -9,4 +9,7 @@
--network-address={{ lxd_bind_address }} \
--network-port={{ lxd_bind_port }} \
--storage-backend={{ lxd_storage_backend }} \
{% if lxd_storage_pool is defined %}
--storage-pool={{ lxd_storage_pool }} \
{% endif %}
--trust-password={{ lxd_trust_password }}