Advertisement
bigmstone

Compute Node - nova.conf

Sep 25th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. [DEFAULT]
  2. # General
  3. verbose=True
  4. my_ip=172.16.10.11
  5. rabbit_host=172.16.10.10
  6. rabbit_password=pass
  7.  
  8. logdir=/var/log/nova
  9. state_path=/var/lib/nova
  10. lock_path=/var/lock/nova
  11.  
  12. auth_strategy=keystone
  13. ec2_host=172.16.10.10
  14. ec2_url=http://172.16.10.10:8773/services/Cloud
  15.  
  16. # Networking
  17. libvirt_use_virtio_for_bridges=True
  18. network_api_class=nova.network.quantumv2.api.API
  19. quantum_url=http://172.16.10.10:9696
  20. quantum_auth_strategy=keystone
  21. quantum_admin_tenant_name=service
  22. quantum_admin_username=quantum
  23. quantum_admin_password=pass
  24. quantum_admin_auth_url=http://172.16.10.10:35357/v2.0
  25.  
  26. # Security Groups
  27. firewall_driver=nova.virt.xenapi.firewall.Dom0IptablesFirewallDriver
  28. xenapi_ovs_integration_bridge=xenbr1
  29. xenapi_vif_driver=nova.virt.xenapi.vif.XenAPIOpenVswitchDriver
  30. security_group_api=quantum
  31.  
  32. # Compute
  33. connection_type=xenapi
  34. compute_driver=xenapi.XenAPIDriver
  35. xenapi_connection_url=http://172.16.10.2
  36. xenapi_connection_username=root
  37. xenapi_connection_password=pass
  38.  
  39. # Cinder
  40. volume_api_class=nova.volume.cinder.API
  41. sr_matching_filter=default-sr:true
  42.  
  43. # Glance
  44. glance_api_servers=172.16.10.10:9292
  45. image_service=nova.image.glance.GlanceImageService
  46.  
  47. # novnc
  48. vnc_enabled=true
  49. vncserver_proxyclient_address=172.16.10.2
  50. novncproxy_base_url=http://172.16.10.10:6080/vnc_auto.html
  51. vncserver_listen=0.0.0.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement