Files
training-labs/labs/osbash/config/demo-openstackrc.sh
Pranav Salunke a998ccb433 Branding updates to training-labs
* Rename folder oslabs to labs.
* Updates due to folder rename.
* Update branding to training-labs.
* Update sphinx build related content.

Change-Id: I47721636102f01c007a61074ee843caadb4baaf4
2015-10-06 12:58:16 +02:00

16 lines
551 B
Bash

# The variables in this file are exported for use by OpenStack client
# applications.
# Unlike a regular openstackrc.sh file, this file gets its variable values
# from other configuration files (to limit redundancy).
# Use BASH_SOURCE so the file works when sourced from a shell, too
CONFIG_DIR=$(dirname "$BASH_SOURCE")
source "$CONFIG_DIR/openstack"
source "$CONFIG_DIR/credentials"
export OS_USERNAME=$DEMO_USER_NAME
export OS_PASSWORD=$DEMO_PASSWORD
export OS_TENANT_NAME=$DEMO_TENANT_NAME
export OS_AUTH_URL="http://controller-mgmt:5000/v2.0"