Refactored the compute model and its elements

In this changeset, I refactored the whole Watcher codebase to
adopt a naming convention about the various elements of the
Compute model so that it reflects the same naming convention
adopted by Nova.

Change-Id: I28adba5e1f27175f025330417b072686134d5f51
Partially-Implements: blueprint cluster-model-objects-wrapper
This commit is contained in:
Vincent Françoise
2016-07-06 17:44:29 +02:00
parent dbde1afea0
commit 31c37342cd
53 changed files with 1865 additions and 1803 deletions

View File

@@ -317,7 +317,7 @@ class KeystoneFailure(WatcherException):
class ClusterEmpty(WatcherException):
msg_fmt = _("The list of hypervisor(s) in the cluster is empty")
msg_fmt = _("The list of compute node(s) in the cluster is empty")
class MetricCollectorNotDefined(WatcherException):
@@ -346,7 +346,7 @@ class GlobalEfficacyComputationError(WatcherException):
"goal using the '%(strategy)s' strategy.")
class NoMetricValuesForVM(WatcherException):
class NoMetricValuesForInstance(WatcherException):
msg_fmt = _("No values returned by %(resource_id)s for %(metric_name)s.")
@@ -357,11 +357,11 @@ class NoSuchMetricForHost(WatcherException):
# Model
class InstanceNotFound(WatcherException):
msg_fmt = _("The instance '%(name)s' is not found")
msg_fmt = _("The instance '%(name)s' could not be found")
class HypervisorNotFound(WatcherException):
msg_fmt = _("The hypervisor is not found")
class ComputeNodeNotFound(WatcherException):
msg_fmt = _("The compute node %s could not be found")
class LoadingError(WatcherException):