Guest User

Untitled

a guest
Oct 22nd, 2011
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. # Template for nova.conf
  2. # Variables are as follows:
  3. # X -- MySql User Name
  4. # X -- MySql password
  5. # 130.203.84.20 -- IP of the database server
  6. # nova -- Name of the OpenStack DB (generally it's just nova)
  7. # 130.203.84.20 -- IP Of the OpenStack Cloud Controller
  8. # 130.203.84.20 -- IP of the Glance host
  9. # eth0 -- The public faceing interface
  10. # eth1 -- The interface VLANs should attach to
  11. # nova -- The zone name of this install
  12.  
  13. # --enabled_apis=ec2
  14.  
  15. # Define our SQL connection
  16. --sql_connection=mysql://X:[email protected]/nova
  17.  
  18. # Don't use IP6
  19. # --use_ipv6=false
  20.  
  21. # DHCP Bridge Stuff (from the default nova.conf)
  22. --dhcpbridge_flagfile=/etc/nova/nova.conf
  23. --dhcpbridge=/usr/bin/nova-dhcpbridge
  24.  
  25. # Allow Zones
  26. --allow_admin_api=true
  27. # --enable_zone_routing=true
  28. --enable_zone_routing
  29. --zone_name=nova
  30. --zone_capabilities=hypervisor=kvm,os=linux
  31.  
  32. # Define availability zones
  33. --node_availability_zone=nova0
  34. --availability_zone=nova0
  35.  
  36. # Setup the objectstore stuff, message queue host, etc
  37. --s3_host=130.203.84.20
  38. --rabbit_host=130.203.84.20
  39. --cc_host=130.203.84.20
  40. --glance_api_servers=130.203.84.20:9292
  41. --iscsi_ip_prefix=130.203.84.20
  42. --ec2_url=http://130.203.84.20:8773/services/Cloud
  43. # --ec2_dmz_host=12.206.225.130
  44. # --vncproxy_url=http://12.206.225.130:6080
  45. --image_service=nova.image.glance.GlanceImageService
  46.  
  47. # Setup networking to our environment
  48. --vlan_interface=eth0
  49. --public_interface=eth0
  50.  
  51. # Setup quotas
  52. --quota_instances=9999
  53. --quota_cores=99999
  54. --quota_ram=999999
  55. --quota_gigabytes=999999
  56.  
  57. # Misc path settings
  58. --lock_path=/var/lib/nova/tmp
  59. #--dnsmasq_config_file=/etc/dnsmasq.conf
  60. --logdir=/var/log/nova
  61. --state_path=/var/lib/nova
  62. #--instances_path=/tmp
  63. --ca_path=/var/lib/nova/CA
  64.  
  65. # Setup the CloudPipe image
  66. --vpn_image_id=7
  67. --use_project_ca
  68. --cnt_vpn_clients=5
  69.  
  70. # Disable inter-project traffic unless it's explicitly allowed via a rule
  71. --allow_project_net_traffic=false
  72.  
  73. # Turn on verbose logging
  74. --verbose
  75.  
  76.  
Advertisement
Add Comment
Please, Sign In to add comment