Advertisement
Guest User

opennfv_rc file for tacker CLI

a guest
Jun 10th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  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 2.0 *Identity API* does not necessarily mean any other
  11. # OpenStack API is version 2.0. 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.0.2.15:5000/v2.0
  15.  
  16. # With the addition of Keystone we have standardized on the term **tenant**
  17. # as the entity that owns the resources.
  18. export OS_TENANT_ID=ad748a49bf594b38a99ddfa7ee0c30f2
  19. export OS_TENANT_NAME="admin"
  20.  
  21. # In addition to the owning entity (tenant), OpenStack stores the entity
  22. # performing the action as the **user**.
  23. export OS_USERNAME="admin"
  24.  
  25. # With Keystone you pass the keystone password.
  26. #echo "Please enter your OpenStack Password: "
  27. #read -sr OS_PASSWORD_INPUT
  28. export OS_PASSWORD=devstack
  29.  
  30. # If your configuration has multiple regions, we set that information here.
  31. # OS_REGION_NAME is optional and only valid in certain environments.
  32. export OS_REGION_NAME="RegionOne"
  33. # Don't leave a blank variable, unset it if it was empty
  34. if [ -z "$OS_REGION_NAME" ]; then unset OS_REGION_NAME; fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement