From 1b092944e15e8570e3b853887662c0188374e774 Mon Sep 17 00:00:00 2001 From: Ricardo Noriega Date: Thu, 20 Apr 2017 17:50:22 +0200 Subject: [PATCH] Adding BGPVPN tempest plugin to service_available section Change-Id: Icc35b9f618685f0f9179880501878a1b5642a188 Signed-off-by: Ricardo Noriega --- manifests/init.pp | 1 + spec/classes/tempest_init_spec.rb | 1 + 2 files changed, 2 insertions(+) diff --git a/manifests/init.pp b/manifests/init.pp index 417592a8..e5b4703b 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -533,6 +533,7 @@ the future release. Please use tempest::package_ensure instead.") 'service_available/aodh': value => $aodh_available; # https://bugs.launchpad.net/aodh/+bug/1611406 'service_available/aodh_plugin': value => $aodh_available; + 'service_available/bgpvpn': value => $neutron_bgpvpn_available; 'service_available/gnocchi': value => $gnocchi_available; 'service_available/panko': value => $panko_available; 'service_available/designate': value => $designate_available; diff --git a/spec/classes/tempest_init_spec.rb b/spec/classes/tempest_init_spec.rb index 54dedf55..75e925e9 100644 --- a/spec/classes/tempest_init_spec.rb +++ b/spec/classes/tempest_init_spec.rb @@ -248,6 +248,7 @@ describe 'tempest' do is_expected.to contain_tempest_config('service_available/ceilometer').with(:value => false) is_expected.to contain_tempest_config('service_available/aodh').with(:value => false) is_expected.to contain_tempest_config('service_available/aodh_plugin').with(:value => false) + is_expected.to contain_tempest_config('service_available/bgpvpn').with(:value => false) is_expected.to contain_tempest_config('service_available/gnocchi').with(:value => false) is_expected.to contain_tempest_config('service_available/panko').with(:value => false) is_expected.to contain_tempest_config('service_available/horizon').with(:value => true)