Advertisement
Guest User

Untitled

a guest
May 23rd, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. stack@devstack:~/devstack$ cat localrc
  2.  
  3. DEST=/opt
  4.  
  5. # If git protocol is blocked in your testing environment
  6. # GIT_BASE=${GIT_BASE:-https://git.openstack.org}
  7.  
  8.  
  9. # Credentials
  10. DATABASE_PASSWORD=openstack
  11. ADMIN_PASSWORD=openstack
  12. SERVICE_PASSWORD=openstack
  13. SERVICE_TOKEN=openstack
  14. RABBIT_PASSWORD=openstack
  15.  
  16. # Services
  17. ENABLED_SERVICES=rabbit,mysql,key
  18. ENABLED_SERVICES+=,n-api,n-crt,n-obj,n-cpu,n-cond,n-sch,n-novnc,n-cauth
  19. ENABLED_SERVICES+=,neutron,q-svc,q-agt,q-dhcp,q-l3,q-meta,q-lbaas
  20. ENABLED_SERVICES+=,s-proxy,s-object,s-container,s-account
  21. ENABLED_SERVICES+=,g-api,g-reg
  22. ENABLED_SERVICES+=,cinder,c-api,c-vol,c-sch,c-bak
  23. ENABLED_SERVICES+=,heat,h-api,h-api-cfn,h-api-cw,h-eng
  24. ENABLED_SERVICES+=,trove,tr-api,tr-tmgr,tr-cond
  25. ENABLED_SERVICES+=,horizon
  26.  
  27. # Images
  28. # Use this image when creating test instances
  29. IMAGE_URLS+=",http://cdn.download.cirros-cloud.net/0.3.2/cirros-0.3.2-x86_64-disk.img"
  30. # Use this image when working with Orchestration (Heat)
  31. IMAGE_URLS+=",http://fedorapeople.org/groups/heat/prebuilt-jeos-images/F17-x86_64-cfntools.qcow2"
  32.  
  33. # Branches
  34. KEYSTONE_BRANCH=stable/icehouse
  35. NOVA_BRANCH=stable/icehouse
  36. NEUTRON_BRANCH=stable/icehouse
  37. SWIFT_BRANCH=stable/icehouse
  38. GLANCE_BRANCH=stable/icehouse
  39. CINDER_BRANCH=stable/icehouse
  40. HEAT_BRANCH=stable/icehouse
  41. TROVE_BRANCH=stable/icehouse
  42. HORIZON_BRANCH=stable/icehouse
  43.  
  44. # Swift Configuration
  45. SWIFT_REPLICAS=1
  46. SWIFT_HASH=66a3d6b56c1f479c8b4e70ab5c2000f5
  47.  
  48. # Enable Logging
  49. LOGFILE=/opt/stack/logs/stack.sh.log
  50. VERBOSE=True
  51. LOG_COLOR=True
  52. SCREEN_LOGDIR=/opt/stack/logs
  53.  
  54. # Network
  55. FLAT_INTERFACE=br100
  56. PUBLIC_INTERFACE=eth1
  57. stack@devstack:~/devstack$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement