Gary Wu | 785dff2 | 2017-10-19 11:50:55 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # To use an OpenStack cloud you need to authenticate against the Identity |
| 4 | # service named keystone, which returns a **Token** and **Service Catalog**. |
| 5 | # The catalog contains the endpoints for all services the user/tenant has |
| 6 | # access to - such as Compute, Image Service, Identity, Object Storage, Block |
| 7 | # Storage, and Networking (code-named nova, glance, keystone, swift, |
| 8 | # cinder, and neutron). |
| 9 | # |
| 10 | # *NOTE*: Using the 3 *Identity API* does not necessarily mean any other |
| 11 | # OpenStack API is version 3. For example, your cloud provider may implement |
| 12 | # Image API v1.1, Block Storage API v2, and Compute API v2.0. OS_AUTH_URL is |
| 13 | # only for the Identity API served through keystone. |
| 14 | export OS_AUTH_URL=http://10.12.25.2:5000/v3 |
| 15 | |
| 16 | # With the addition of Keystone we have standardized on the term **project** |
| 17 | # as the entity that owns the resources. |
| 18 | export OS_PROJECT_ID=09d8566ea45e43aa974cf447ed591d77 |
| 19 | export OS_PROJECT_NAME="Integration-Jenkins" |
| 20 | export OS_USER_DOMAIN_NAME="Default" |
| 21 | if [ -z "$OS_USER_DOMAIN_NAME" ]; then unset OS_USER_DOMAIN_NAME; fi |
| 22 | |
| 23 | # unset v2.0 items in case set |
| 24 | unset OS_TENANT_ID |
| 25 | unset OS_TENANT_NAME |
| 26 | |
| 27 | # In addition to the owning entity (tenant), OpenStack stores the entity |
| 28 | # performing the action as the **user**. |
| 29 | export OS_USERNAME="gary_wu" |
| 30 | |
| 31 | # Remote Openstack clients will need to set this environment if |
| 32 | # connecting to an HTTPS enabled endpoint |
| 33 | CERT_MSG="Please enter a path for your CA certificate pem file, \ |
| 34 | or press enter if you are not using HTTPS " |
Gary Wu | cde4fec | 2017-10-23 12:12:38 -0700 | [diff] [blame^] | 35 | if [ -z ${OS_CACERT_INPUT+x} ]; then |
| 36 | read -p "$CERT_MSG" OS_CACERT_INPUT |
| 37 | fi |
Gary Wu | 785dff2 | 2017-10-19 11:50:55 -0700 | [diff] [blame] | 38 | if [ ! -z "$OS_CACERT_INPUT" ] |
| 39 | then |
| 40 | export OS_CACERT=$(readlink -f $OS_CACERT_INPUT) |
| 41 | fi |
| 42 | |
| 43 | # With Keystone you pass the keystone password. |
Gary Wu | cde4fec | 2017-10-23 12:12:38 -0700 | [diff] [blame^] | 44 | if [ -z ${OS_PASSWORD_INPUT+x} ]; then |
| 45 | read -sp "Please enter your OpenStack Password for project $OS_PROJECT_NAME as user $OS_USERNAME: " OS_PASSWORD_INPUT |
| 46 | fi |
Gary Wu | 785dff2 | 2017-10-19 11:50:55 -0700 | [diff] [blame] | 47 | export OS_PASSWORD=$OS_PASSWORD_INPUT |
| 48 | |
| 49 | # If your configuration has multiple regions, we set that information here. |
| 50 | # OS_REGION_NAME is optional and only valid in certain environments. |
| 51 | export OS_REGION_NAME="RegionOne" |
| 52 | # Don't leave a blank variable, unset it if it was empty |
| 53 | if [ -z "$OS_REGION_NAME" ]; then unset OS_REGION_NAME; fi |
| 54 | |
| 55 | export OS_INTERFACE=public |
| 56 | export OS_IDENTITY_API_VERSION=3 |