Advertisement
Guest User

Untitled

a guest
Apr 7th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. [[local|localrc]]
  2.  
  3. ADMIN_PASSWORD=password
  4. MYSQL_PASSWORD=password
  5. RABBIT_PASSWORD=password
  6. SERVICE_PASSWORD=password
  7. HOST_IP=$(host $(hostname) | cut -d' ' -f4)
  8.  
  9. # Logging
  10. LOGDIR=${LOGDIR:-/opt/stack/logs}
  11. LOGFILE=$LOGDIR/stack.sh.log
  12. LOG_COLOR=False
  13.  
  14. RECLONE=yes
  15.  
  16. # Cinder
  17. VOLUME_BACKING_FILE_SIZE=1000M
  18.  
  19. # Keystone
  20. SERVICE_TOKEN=servicetoken
  21.  
  22. # Neutron
  23. Q_PLUGIN=ml2
  24. Q_AGENT=openvswitch
  25. Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,sriovnicswitch
  26. Q_USE_DEBUG_COMMAND=False
  27. Q_USE_SECGROUP=False
  28. ENABLE_TENANT_VLANS=True
  29. Q_ML2_PLUGIN_TYPE_DRIVERS=vlan
  30. ENABLE_TENANT_TUNNELS=False
  31. Q_ML2_TENANT_NETWORK_TYPE=vlan
  32. PHYSICAL_NETWORK=default
  33. PHYSICAL_INTERFACE=p1p1
  34. TENANT_VLAN_RANGE=2:100
  35. NETWORK_API_EXTENSIONS=dhcp_agent_scheduler,external-net,ext-gw-mode,binding,quotas,agent,l3_agent_scheduler,provider,router,extraroute
  36. OVS_PHYSICAL_BRIDGE=br-eth-test
  37.  
  38. ALLOW_NEUTRON_DB_MIGRATIONS=true
  39.  
  40. # Services
  41. disable_service n-net
  42. disable_service h-eng h-api h-api-cfn h-api-cw
  43. enable_service neutron q-svc q-dhcp q-l3 q-meta q-agt q-lbaas n-novnc n-xvnc n-cauth horizon
  44.  
  45. # Optional, to enable tempest configuration as part of devstack
  46. enable_service tempest
  47. API_RATE_LIMIT=False
  48. USE_SCREEN=True
  49.  
  50. [[post-config|$NOVA_CONF]]
  51. [DEFAULT]
  52. pci_passthrough_whitelist ={"'"address"'":"'"*:02:00.*"'","'"physical_network"'":"'"default"'"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement