Advertisement
jvelluet

nova.conf

Aug 26th, 2013
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. # nova.conf
  2. [DEFAULT]
  3. verbose=True
  4.  
  5. dhcpbridge_flagfile=/etc/nova/nova.conf
  6. dhcpbridge=/usr/bin/nova-dhcpbridge
  7. logdir=/var/log/nova
  8. state_path=/var/lib/nova
  9. lock_path=/var/lock/nova
  10. iscsi_helper=tgtadm
  11. root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
  12. ec2_private_dns_show_ip=True
  13. api_paste_config=/etc/nova/api-paste.ini
  14. volumes_path=/var/lib/nova/volumes
  15. enabled_apis=ec2,osapi_compute,metadata
  16.  
  17. rabbit_host=10.10.10.10
  18. rabbit_password=password
  19.  
  20. auth_strategy=keystone
  21. ec2_host=10.10.10.10
  22. ec2_url=http://10.10.10.10:8773/services/Cloud
  23.  
  24. # Networking
  25. network_api_class=nova.network.quantumv2.api.API
  26. quantum_url=http://10.10.10.10:9696
  27. quantum_auth_strategy=keystone
  28. quantum_admin_tenant_name=service
  29. quantum_admin_username=quantum
  30. quantum_admin_password=password
  31. quantum_admin_auth_url=http://10.10.10.10:35357/v2.0
  32.  
  33. xenapi_vif_driver=nova.virt.xenapi.vif.XenAPIOpenVswitchDriver
  34. linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver
  35.  
  36.  
  37. # NETWORK
  38. libvirt_use_virtio_for_bridges=False
  39. network_manager=nova.network.manager.FlatDHCPManager
  40. force_dhcp_release=True
  41. dhcpbridge_flagfile=/etc/nova/nova.conf
  42.  
  43. sr_matching_filter=default-sr:true
  44. xenapi_inject_image=False
  45.  
  46. compute_driver=xenapi.XenAPIDriver
  47. xenapi_connection_url=http://10.10.10.12
  48. xenapi_connection_username=root
  49. xenapi_connection_password=azerty
  50. connection_type=xenapi
  51.  
  52. # I don't understand how to configure this part... and what is use_local_volumes flag
  53. volume_driver=nova.volume.xensm.XenSMDriver
  54. use_local_volumes=False
  55.  
  56. # Change my_ip to match each host
  57. my_ip=10.10.10.11
  58.  
  59. public_interface=eth0
  60. flat_network_bridge=xenbr1
  61. flat_interface=eth2
  62. fixed_range=''
  63.  
  64. # Security Groups
  65. firewall_driver=nova.virt.xenapi.firewall.Dom0IptablesFirewallDriver
  66. security_group_api=quantum
  67.  
  68. # Cinder
  69. volume_api_class=nova.volume.cinder.API
  70.  
  71. # Glance
  72. glance_api_servers=10.10.10.10:9292
  73. image_service=nova.image.glance.GlanceImageService
  74.  
  75. # novnc
  76. vnc_enabled=true
  77. vncserver_proxyclient_address=10.10.10.11
  78. novncproxy_base_url=http://10.10.10.10:6080/vnc_auto.html
  79. vncserver_listen=0.0.0.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement