updates to excercise.sh to get partial working-ness

This commit is contained in:
Anthony Young 2011-09-27 00:29:28 -07:00
parent 34acee3699
commit 4387690ba5

View File

@ -25,7 +25,7 @@ HOST=${HOST:-localhost}
# ip address, ...) With the addition of Keystone we have standardized on the # ip address, ...) With the addition of Keystone we have standardized on the
# term **tenant** as the entity that owns the resources. **novaclient** still # term **tenant** as the entity that owns the resources. **novaclient** still
# uses the old deprecated terms project_id. # uses the old deprecated terms project_id.
export NOVA_PROJECT_ID=${TENANT:-demo} export NOVA_PROJECT_ID=${TENANT:-2}
# In addition to the owning entity (tenant), nova stores the entity performing # In addition to the owning entity (tenant), nova stores the entity performing
# the action as the **user**. # the action as the **user**.
@ -48,6 +48,9 @@ export NOVA_URL=${NOVA_URL:-http://$HOST:5000/v2.0/}
# needs to match the config of your catalog returned by Keystone. # needs to match the config of your catalog returned by Keystone.
export NOVA_VERSION=1.1 export NOVA_VERSION=1.1
# FIXME - why does this need to be specified?
export NOVA_REGION_NAME=RegionOne
# Launching a server # Launching a server
# ================== # ==================