From 02035661eace89613bd19a42113a2fcdbf9a1789 Mon Sep 17 00:00:00 2001 From: Oleksandr Kyrylchuk Date: Wed, 27 Apr 2016 15:48:15 +0300 Subject: [PATCH] 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 --- fuel_health/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fuel_health/config.py b/fuel_health/config.py index 19d32970..8632ab61 100644 --- a/fuel_health/config.py +++ b/fuel_health/config.py @@ -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"), ]