Advertisement
Guest User

Untitled

a guest
Mar 7th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  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. #
  9. # *NOTE*: Using the 3 *Identity API* does not necessarily mean any other
  10. # OpenStack API is version 3. For example, your cloud provider may implement
  11. # Image API v1.1, Block Storage API v2, and Compute API v2.0. OS_AUTH_URL is
  12. # only for the Identity API served through keystone.
  13. export OS_AUTH_URL=http://192.168.0.64/identity/v3
  14. # With the addition of Keystone we have standardized on the term **project**
  15. # as the entity that owns the resources.
  16. export OS_PROJECT_ID=b022b025e31448bf8f30608881adba5a
  17. export OS_PROJECT_NAME="admin"
  18. export OS_USER_DOMAIN_NAME="Default"
  19. if [ -z "$OS_USER_DOMAIN_NAME" ]; then unset OS_USER_DOMAIN_NAME; fi
  20. export OS_PROJECT_DOMAIN_ID="default"
  21. if [ -z "$OS_PROJECT_DOMAIN_ID" ]; then unset OS_PROJECT_DOMAIN_ID; fi
  22. # unset v2.0 items in case set
  23. unset OS_TENANT_ID
  24. unset OS_TENANT_NAME
  25. # In addition to the owning entity (tenant), OpenStack stores the entity
  26. # performing the action as the **user**.
  27. export OS_USERNAME="admin"
  28. # With Keystone you pass the keystone password.
  29. echo "Please enter your OpenStack Password for project $OS_PROJECT_NAME as user $OS_USERNAME: "
  30. read -sr OS_PASSWORD_INPUT
  31. export OS_PASSWORD=$OS_PASSWORD_INPUT
  32. # If your configuration has multiple regions, we set that information here.
  33. # OS_REGION_NAME is optional and only valid in certain environments.
  34. export OS_REGION_NAME="RegionOne"
  35. # Don't leave a blank variable, unset it if it was empty
  36. if [ -z "$OS_REGION_NAME" ]; then unset OS_REGION_NAME; fi
  37. export OS_INTERFACE=public
  38. export OS_IDENTITY_API_VERSION=3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement