From dc22191afde9889af84a3ffad51dc96a41a1b515 Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Mon, 26 Sep 2016 10:28:16 +0200 Subject: [PATCH] Fix test with the monitoring network template The StackLight dashboards are now exposed on the public network by default and even though the monitoring.yaml network template changes the default to use a dedicated network for all StackLight services, it fails the network verification. Hence the change skips the network verification step for this test. Change-Id: I3dc426590bc3e15a116d3b82ca71a581e337a8c3 Closes-Bug: #1621527 --- stacklight_tests/toolchain/test_network_templates.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stacklight_tests/toolchain/test_network_templates.py b/stacklight_tests/toolchain/test_network_templates.py index 3af2ea0..cfd96f8 100644 --- a/stacklight_tests/toolchain/test_network_templates.py +++ b/stacklight_tests/toolchain/test_network_templates.py @@ -105,8 +105,10 @@ class TestToolchainNetworkTemplates(api.ToolchainApi): networks=network_config["networks"]) # Don't update the interfaces when using network templates + # Also don't verify the network because the StackLight backends aren't + # connected to the public net and this would fail the verification self.helpers.deploy_cluster(self.settings.base_nodes, - verify_network=True, + verify_network=False, update_interfaces=False) self.check_plugins_online()