From a8ab047b95155b1c7eea75e97d53f54bafb856ff Mon Sep 17 00:00:00 2001 From: yatin Date: Thu, 27 Sep 2018 22:17:51 +0530 Subject: [PATCH] Enable neutron, nova, horizon and cinder for python3 Python3 packages are available at [1], so enable neutron, nova, horizon and cinder in py3 scenario. [1] https://trunk.rdoproject.org/fedora/current/ Depends-On: https://review.openstack.org/#/c/605799/ Depends-On: https://review.openstack.org/#/c/605805/ Depends-On: https://review.openstack.org/#/c/605801/ Depends-On: https://review.openstack.org/#/c/605122/ Depends-On: https://review.openstack.org/#/c/606128/ Change-Id: Ie3a1d9dfafd56660ae1be498723282fbd28bf807 --- fixtures/scenario-py3.pp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/fixtures/scenario-py3.pp b/fixtures/scenario-py3.pp index d7bfef251..1f6ae3965 100644 --- a/fixtures/scenario-py3.pp +++ b/fixtures/scenario-py3.pp @@ -39,12 +39,13 @@ include ::openstack_integration::rabbitmq include ::openstack_integration::mysql include ::openstack_integration::keystone include ::openstack_integration::glance -class { '::openstack_integration::provision': - neutron => false, - nova => false, -} +include ::openstack_integration::neutron +include ::openstack_integration::nova +include ::openstack_integration::cinder +include ::openstack_integration::horizon +include ::openstack_integration::provision class { '::openstack_integration::tempest': - neutron => false, - nova => false, + horizon => true, + cinder => true, }