47 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
# To use an OpenStack cloud you need to authenticate against the Identity
 | 
						|
# service named keystone, which returns a **Token** and **Service Catalog**.
 | 
						|
# The catalog contains the endpoints for all services the user/tenant has
 | 
						|
# access to - such as Compute, Image Service, Identity, Object Storage, Block
 | 
						|
# Storage, and Networking (code-named nova, glance, keystone, swift,
 | 
						|
# cinder, and neutron).
 | 
						|
 | 
						|
# unset all OPENSTACK ENV VARS
 | 
						|
unset $(env | grep OS_ | cut -d "=" -f 1)
 | 
						|
 | 
						|
export OS_CACERT=./root-ca.crt
 | 
						|
export GROUP_NUMBER=0
 | 
						|
 | 
						|
#
 | 
						|
# *NOTE*: Using the 3 *Identity API* does not necessarily mean any other
 | 
						|
# OpenStack API is version 3. For example, your cloud provider may implement
 | 
						|
# Image API v1.1, Block Storage API v2, and Compute API v2.0. OS_AUTH_URL is
 | 
						|
# only for the Identity API served through keystone.
 | 
						|
export OS_AUTH_URL=https://10.32.4.182:5000/v3
 | 
						|
# With the addition of Keystone we have standardized on the term **project**
 | 
						|
# as the entity that owns the resources.
 | 
						|
#export OS_PROJECT_ID=bba62cf6bf0b447491829d207e1b05f9
 | 
						|
export OS_PROJECT_NAME="CloudComp$GROUP_NUMBER"
 | 
						|
unset OS_DOMAIN_NAME
 | 
						|
export OS_USER_DOMAIN_NAME="Default"
 | 
						|
if [ -z "$OS_USER_DOMAIN_NAME" ]; then unset OS_USER_DOMAIN_NAME; fi
 | 
						|
export OS_PROJECT_DOMAIN_ID="default"
 | 
						|
if [ -z "$OS_PROJECT_DOMAIN_ID" ]; then unset OS_PROJECT_DOMAIN_ID; fi
 | 
						|
# unset v2.0 items in case set
 | 
						|
unset OS_TENANT_ID
 | 
						|
unset OS_TENANT_NAME
 | 
						|
# In addition to the owning entity (tenant), OpenStack stores the entity
 | 
						|
# performing the action as the **user**.
 | 
						|
export OS_USERNAME="CloudComp$GROUP_NUMBER"
 | 
						|
# With Keystone you pass the keystone password.
 | 
						|
#echo "Please enter your OpenStack Password for project $OS_PROJECT_NAME as user $OS_USERNAME: "
 | 
						|
#read -sr OS_PASSWORD_INPUT
 | 
						|
#export OS_PASSWORD=$OS_PASSWORD_INPUT
 | 
						|
export OS_PASSWORD="demo"
 | 
						|
# If your configuration has multiple regions, we set that information here.
 | 
						|
# OS_REGION_NAME is optional and only valid in certain environments.
 | 
						|
export OS_REGION_NAME="RegionOne"
 | 
						|
# Don't leave a blank variable, unset it if it was empty
 | 
						|
if [ -z "$OS_REGION_NAME" ]; then unset OS_REGION_NAME; fi
 | 
						|
export OS_INTERFACE=public
 | 
						|
export OS_IDENTITY_API_VERSION=3 |