diff options
author | Mark McLoughlin <markmc@redhat.com> | 2013-01-08 08:00:45 +0000 |
---|---|---|
committer | Mark McLoughlin <markmc@redhat.com> | 2013-01-09 08:15:43 +0000 |
commit | 1db4b13d86d748d9619ea9ce37bb4663285468b5 (patch) | |
tree | 994b99505dd7990e1548cf0384043976f54b50d6 /nova/config.py | |
parent | 44cc0cda04cd20adf057eff76af0e6ba5ee0dcad (diff) | |
download | nova-1db4b13d86d748d9619ea9ce37bb4663285468b5.tar.gz nova-1db4b13d86d748d9619ea9ce37bb4663285468b5.tar.xz nova-1db4b13d86d748d9619ea9ce37bb4663285468b5.zip |
Move common virt driver options to virt.driver
The default_ephemeral_format and use_cow_images options are used by a
number of virt drivers and nowhere else.
blueprint: scope-config-opts
Change-Id: I4ab2891e156589ae7bb44e6ce69cba3680a070c5
Diffstat (limited to 'nova/config.py')
-rw-r--r-- | nova/config.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/nova/config.py b/nova/config.py index 95d897255..172e772ae 100644 --- a/nova/config.py +++ b/nova/config.py @@ -66,19 +66,12 @@ global_opts = [ cfg.ListOpt('memcached_servers', default=None, help='Memcached servers or None for in process cache.'), - cfg.StrOpt('default_ephemeral_format', - default=None, - help='The default format an ephemeral_volume will be ' - 'formatted with on creation.'), cfg.BoolOpt('use_ipv6', default=False, help='use ipv6'), cfg.IntOpt('service_down_time', default=60, help='maximum time since last check-in for up service'), - cfg.BoolOpt('use_cow_images', - default=True, - help='Whether to use cow images'), ] cfg.CONF.register_opts(global_opts) |