Advertisement
Guest User

Untitled

a guest
Jan 30th, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.33 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. VERBOSE=True
  4.  
  5. MYSQL_PASSWORD=secrete
  6. RABBIT_PASSWORD=secrete
  7. SERVICE_TOKEN=secrete
  8. SERVICE_PASSWORD=secrete
  9. ADMIN_PASSWORD=secrete
  10.  
  11. SWIFT_HASH=do_not_change_this
  12.  
  13. # Force the prerequisite evaluation to always run in case we are
  14. # recycling a VM after rebuilding.
  15. #FORCE_PREREQ=1
  16.  
  17. # Set the range of IPs for the guests
  18. NETWORK_GATEWAY=192.168.57.1
  19. FIXED_RANGE=192.168.57.0/24
  20.  
  21. # Configure the notifier to talk to the message queue
  22. EXTRA_OPTS=(
  23.     notification_driver=ceilometer.compute.nova_notifier
  24.     notification_driver=nova.openstack.common.notifier.rabbit_notifier
  25.     instance_usage_audit=True
  26.     )
  27.  
  28. # Tell pip to save the files it downloads
  29. PIP_DOWNLOAD_CACHE=/opt/stack/cache/pip
  30.  
  31. # Use Quantum for networking
  32. #enable_service quantum,q-svc,q-agt,q-dhcp,q-l3
  33. ##Q_PLUGIN=linuxbridge
  34. #LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
  35. #NOVA_VIF_DRIVER=nova.virt.libvirt.vif.LibvirtOpenVswitchDriver
  36. #NOVA_USE_QUANTUM_API=v2
  37.  
  38. # Set the location for the block file storage
  39. # to something within the VM so it is deleted
  40. # when we rebuild *and* so it allows the required
  41. # permissions for the loopback configuration,
  42. # which can be an issue with the NFS setup.
  43. #DATA_DIR=/opt/stack/_vmdata/`hostname`
  44. #DATA_DIR=/home/vagrant/data
  45. DATA_DIR=/opt/stack/data
  46. # Nova wants to chown files to vagrant:vagrant so
  47. # we can't put it on an NFS mount.
  48.  
  49. # Use the master git repos of the stackforge libs like pecan and wsme
  50. enable_service stackforge_libs
  51.  
  52. # Turn on ceilometer
  53. enable_service ceilometer-acompute,ceilometer-acentral,ceilometer-collector,ceilometer-api
  54.  
  55. #enable_service swift
  56.  
  57. CHOWN_AFTER_PROJECT_INSTALL=False
  58.  
  59. # CEILOMETER_BRANCH=master
  60. # CINDER_BRANCH=stable/folsom
  61. # NOVA_BRANCH=stable/folsom
  62. # SWIFT_BRANCH=stable/folsom
  63. # SWIFT3_BRANCH=stable/folsom
  64. # GLANCE_BRANCH=stable/folsom
  65. # KEYSTONE_BRANCH=stable/folsom
  66. # HORIZON_BRANCH=stable/folsom
  67. # QUANTUM_BRANCH=stable/folsom
  68. # TEMPEST_BRANCH=stable/folsom
  69. # HEAT_BRANCH=stable/folsom
  70. # RYU_BRANCH=stable/folsom
  71.  
  72. # Turn off cinder and use nova-volumes because
  73. # something in my devstack environment does not
  74. # correctly set up cinder as of 2012-09-22
  75. #disable_service c-api c-sch c-vol cinder
  76. #enable_service n-vol
  77.  
  78. # Use UUID tokens
  79. KEYSTONE_TOKEN_FORMAT=UUID
  80.  
  81. # Log stack.sh output
  82. LOGFILE=/opt/stack/logs/stack.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement