From 1de731a70f43795a5a7a72a69129711a4ab1e8aa Mon Sep 17 00:00:00 2001 From: David Ames Date: Thu, 1 Aug 2019 10:18:59 -0700 Subject: [PATCH] Ceilometer is in a blocked state until action run For a full stack deployment ceilometer will be in a blocked state waiting on the ceilometer-action run. Add this to the workload exceptions dict. --- zaza/openstack/utilities/openstack.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/zaza/openstack/utilities/openstack.py b/zaza/openstack/utilities/openstack.py index 1339ce2..255726b 100644 --- a/zaza/openstack/utilities/openstack.py +++ b/zaza/openstack/utilities/openstack.py @@ -129,7 +129,12 @@ WORKLOAD_STATUS_EXCEPTIONS = { 'workload-status': 'unknown', 'workload-status-message': ''}, 'postgresql': { - 'workload-status-message': 'Live'}} + 'workload-status-message': 'Live'}, + 'ceilometer': { + 'workload-status': 'blocked', + 'workload-status-message': + ('Run the ceilometer-upgrade action on the leader to initialize ' + 'ceilometer and gnocchi')}} # For vault TLS certificates KEYSTONE_CACERT = "keystone_juju_ca_cert.crt"