From 897f80a37feb5e5b7caf2d2daf13ebd5f2e80688 Mon Sep 17 00:00:00 2001 From: Logan V Date: Thu, 11 Apr 2019 13:02:29 -0500 Subject: [PATCH] Do not ping router when public net is local Don't bother trying to ping the router address when the public network type is 'local'. In calico, a local network type is used, and the router is not set up on the host until an instance using that network is created. Since this check occurs before the tempest run (and before any instances are created), the gateway is not expected to ping. Change-Id: I47543778487b6a9a2972b29d270d199a4d1e9b61 --- tasks/tempest_resources.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/tempest_resources.yml b/tasks/tempest_resources.yml index 1cac2bd7..d70a960f 100644 --- a/tasks/tempest_resources.yml +++ b/tasks/tempest_resources.yml @@ -291,3 +291,4 @@ - tempest_service_available_neutron | bool - router_admin_state | bool - tempest_network_ping_gateway | bool + - tempest_public_net_provider_type not in ['local']