From 0edde7d44f87ebf2f9a48f840a645162a8e4c2a4 Mon Sep 17 00:00:00 2001 From: Anthony Young Date: Thu, 6 Oct 2011 07:10:24 -0700 Subject: [PATCH] use tenantName for NOVA_PROJECT_ID --- exercise.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/exercise.sh b/exercise.sh index 7f7be49..a1cf025 100755 --- a/exercise.sh +++ b/exercise.sh @@ -24,8 +24,9 @@ HOST=${HOST:-localhost} # Nova original used project_id as the *account* that owned resources (servers, # ip address, ...) With the addition of Keystone we have standardized on the # term **tenant** as the entity that owns the resources. **novaclient** still -# uses the old deprecated terms project_id. -export NOVA_PROJECT_ID=${TENANT:-2} +# uses the old deprecated terms project_id. Note that this field should now be +# set to tenant_name, not tenant_id. +export NOVA_PROJECT_ID=${TENANT:-demo} # In addition to the owning entity (tenant), nova stores the entity performing # the action as the **user**.