From d264b28b97d3ea5abc6cb694e8094028d923caba Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Mon, 1 Apr 2013 14:21:41 -0700 Subject: [PATCH] set revision to master for grizzly there is not yet a stable branch in tempest, so this updates the version to use to master for grizzly. --- manifests/site.pp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/manifests/site.pp b/manifests/site.pp index 76e2423..0fdd456 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -323,6 +323,12 @@ node /tempest/ { } } + if ($::openstack_version == 'grizzly') { + $revision = 'master' + } else { + $revision = $::openstack_version + } + class { 'tempest': identity_host => $::openstack_controller, identity_port => '35357', @@ -350,7 +356,7 @@ node /tempest/ { admin_password => $::admin_password, admin_tenant_name => 'admin', nova_db_uri => 'mysql://nova:nova_db_password@127.0.0.1/nova', - version_to_test => $::openstack_version, + version_to_test => $revision, } class { 'openstack::auth_file':