From 54945ed2a839f8c8811f73ea3a192648a4e02a13 Mon Sep 17 00:00:00 2001 From: Eric K Date: Wed, 28 Nov 2018 14:35:37 -0800 Subject: [PATCH] Monasca webhook rocky schema feature flag Monasca webhook driver was released in rocky as 'unstable'. As expected, backward incompatible changes are taking place. To support tempest testing of the feature in Rocky, an additional feature flag is needed to indicate the old Rocky schema is used. Change-Id: Ie605a5d8427af6191a76dcf6ebfbc3e69e141248 --- congress_tempest_plugin/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/congress_tempest_plugin/config.py b/congress_tempest_plugin/config.py index f9aad38..85216db 100755 --- a/congress_tempest_plugin/config.py +++ b/congress_tempest_plugin/config.py @@ -32,6 +32,9 @@ CongressFeatureGroup = [ cfg.BoolOpt('monasca_webhook', default=False, help="monasca_webhook feature available"), + cfg.BoolOpt('monasca_webhook_rocky', + default=False, + help="monasca_webhook uses Rocky schema"), cfg.BoolOpt('vitrage_webhook', default=False, help="vitrage_webhook feature available"),