You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
2.1 KiB

  1. #!/usr/bin/env bash
  2. # To use an OpenStack cloud you need to authenticate against the Identity
  3. # service named keystone, which returns a **Token** and **Service Catalog**.
  4. # The catalog contains the endpoints for all services the user/tenant has
  5. # access to - such as Compute, Image Service, Identity, Object Storage, Block
  6. # Storage, and Networking (code-named nova, glance, keystone, swift,
  7. # cinder, and neutron).
  8. # unset all OPENSTACK ENV VARS
  9. unset $(env | grep OS_ | cut -d "=" -f 1)
  10. export OS_CACERT=./root-ca.crt
  11. export GROUP_NUMBER=0
  12. #
  13. # *NOTE*: Using the 3 *Identity API* does not necessarily mean any other
  14. # OpenStack API is version 3. For example, your cloud provider may implement
  15. # Image API v1.1, Block Storage API v2, and Compute API v2.0. OS_AUTH_URL is
  16. # only for the Identity API served through keystone.
  17. export OS_AUTH_URL=https://10.32.4.182:5000/v3
  18. # With the addition of Keystone we have standardized on the term **project**
  19. # as the entity that owns the resources.
  20. #export OS_PROJECT_ID=bba62cf6bf0b447491829d207e1b05f9
  21. export OS_PROJECT_NAME="CloudComp$GROUP_NUMBER"
  22. unset OS_DOMAIN_NAME
  23. export OS_USER_DOMAIN_NAME="Default"
  24. if [ -z "$OS_USER_DOMAIN_NAME" ]; then unset OS_USER_DOMAIN_NAME; fi
  25. export OS_PROJECT_DOMAIN_ID="default"
  26. if [ -z "$OS_PROJECT_DOMAIN_ID" ]; then unset OS_PROJECT_DOMAIN_ID; fi
  27. # unset v2.0 items in case set
  28. unset OS_TENANT_ID
  29. unset OS_TENANT_NAME
  30. # In addition to the owning entity (tenant), OpenStack stores the entity
  31. # performing the action as the **user**.
  32. export OS_USERNAME="CloudComp$GROUP_NUMBER"
  33. # With Keystone you pass the keystone password.
  34. #echo "Please enter your OpenStack Password for project $OS_PROJECT_NAME as user $OS_USERNAME: "
  35. #read -sr OS_PASSWORD_INPUT
  36. #export OS_PASSWORD=$OS_PASSWORD_INPUT
  37. export OS_PASSWORD="demo"
  38. # If your configuration has multiple regions, we set that information here.
  39. # OS_REGION_NAME is optional and only valid in certain environments.
  40. export OS_REGION_NAME="RegionOne"
  41. # Don't leave a blank variable, unset it if it was empty
  42. if [ -z "$OS_REGION_NAME" ]; then unset OS_REGION_NAME; fi
  43. export OS_INTERFACE=public
  44. export OS_IDENTITY_API_VERSION=3