From 14ef27778c1962b3d7a64fc4450a0ab564fc3123 Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Tue, 19 Feb 2013 20:30:10 -0800 Subject: [PATCH] make test openstack version configurable this commit allows for the openstack version to be specified as a hiera lookup. this is being added so that jenkins can set the version of openstack that should be built and tested. --- manifests/site.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/site.pp b/manifests/site.pp index 2b12dde..fd8f905 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -58,6 +58,7 @@ $auto_assign_floating_ip = hiera('auto_assign_floating_ip', false) #### controller/compute mode settings #### $openstack_controller = hiera('openstack_controller', '172.16.0.3') #### controller/compute mode settings #### +$openstack_version = hiera('openstack_version', 'folsom') # node declaration for all in one import 'scenarios/all_in_one.pp' @@ -333,6 +334,7 @@ node /tempest/ { admin_username => 'admin', admin_password => $::admin_password, admin_tenant_name => 'admin', + version_to_test => $::openstack_version, } class { 'openstack::auth_file':