From 40c7596c9bfab14ab1bd187c06986fc66a900537 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Thu, 21 Dec 2017 14:22:31 -0800 Subject: [PATCH] Disable l2gw testing on centos7 ... until https://review.rdoproject.org/r/#/c/11064/ is merged. Change-Id: I77a3689d14059a7fa2fde556b3e0513f28561aaf --- fixtures/scenario004.pp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fixtures/scenario004.pp b/fixtures/scenario004.pp index 0bfe495bb..6db100c85 100644 --- a/fixtures/scenario004.pp +++ b/fixtures/scenario004.pp @@ -21,10 +21,14 @@ if $::operatingsystem == 'Ubuntu' { $watcher_enabled = false # TODO(rnoriega) Enable testing for BGPVPN when UCA releases pike-m1 $bgpvpn_enabled = false + $l2gw_enabled = true } else { $ipv6 = true $watcher_enabled = true $bgpvpn_enabled = true + # Until https://review.rdoproject.org/r/#/c/11064/ is merged and + # in consistent repo. + $l2gw_enabled = false } include ::openstack_integration @@ -66,6 +70,6 @@ include ::openstack_integration::provision class { '::openstack_integration::tempest': watcher => $watcher_enabled, bgpvpn => $bgpvpn_enabled, - l2gw => true, + l2gw => $l2gw_enabled, l2gw_switch => 'cell08-5930-01::FortyGigE1/0/1|100', }