Added 'use_vcenter' to the list of options

Reasons:
    - 'use_vcenter' is not declared in option list of ComputeGroup
      but assigned later in _parse_cluster_attributes()
Changes:
    - Added option 'use_vcenter' to ComputeGroup

Change-Id: I066b59b46413701233c9723a60645edfe1f1f7fb
Closes-Bug: 1575646
This commit is contained in:
Oleksandr Kyrylchuk 2016-04-27 15:48:15 +03:00
parent 93f6e0db56
commit 02035661ea
1 changed files with 3 additions and 0 deletions

View File

@ -206,6 +206,9 @@ ComputeGroup = [
cfg.StrOpt('libvirt_type',
default='qemu',
help="Type of hypervisor to use."),
cfg.BoolOpt('use_vcenter',
default=False,
help="Usage of vCenter"),
]