Guest User

nova.conf

a guest
Jan 17th, 2013
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. [DEFAULT]
  3. logdir = /var/log/nova
  4. state_path = /var/lib/nova
  5. lock_path = /var/lib/nova/tmp
  6.  
  7. # LOGS/STATE
  8. verbose = True
  9.  
  10. # AUTHENTICATION
  11. auth_strategy = keystone
  12.  
  13. # SCHEDULER
  14. compute_scheduler_driver = nova.scheduler.filter_scheduler.FilterScheduler
  15.  
  16. # VOLUMES
  17. volume_group = nova-volumes
  18. volume_name_template = volume-%08x
  19. iscsi_helper = tgtadm
  20.  
  21. # DATABASE
  22. sql_connection = mysql://awcloud:[email protected]/nova
  23.  
  24. # COMPUTE
  25. libvirt_type = kvm
  26. connection_type = libvirt
  27. instance_name_template = instance-%08x
  28. api_paste_config = /etc/nova/api-paste.ini
  29.  
  30. libvirt_cpu_mode=none
  31. # APIS
  32. osapi_compute_extension = nova.api.openstack.compute.contrib.standard_extensions
  33. ec2_dmz_host = 118.244.156.103
  34.  
  35. # QPID
  36. qpid_hostname = 162.168.100.101
  37. # GLANCE
  38. image_service = nova.image.glance.GlanceImageService
  39. glance_api_servers = 118.244.156.101:9292
  40.  
  41. #network_manager=nova.network.quantum.manager.QuantumManager
  42. #linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver
  43. #libvirt_ovs_bridge=br-int
  44.  
  45. #libvirt_vif_type=ethernet
  46. #libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtOpenVswitchDriver
  47. #quantum_connection_host="172.16.1.7"
  48. #quantum_use_dhcp=True
  49.  
  50. network_manager = nova.network.manager.FlatDHCPManager
  51. force_dhcp_release = True
  52. dhcpbridge = /usr/bin/nova-dhcpbridge
  53. dhcpbridge_flagfile = /etc/nova/nova.conf
  54. injected_network_template = /usr/share/nova/interfaces.template
  55. firewall_driver = nova.virt.libvirt.firewall.IptablesFirewallDriver
  56. my_ip = 118.244.156.103
  57. public_interface = eth0
  58. flat_network_bridge=vmbr
  59. flat_interface = eth1
  60. fixed_range = 10.0.0.0/8
  61. auto_assign_floating_ip = False
  62. flat_network_dhcp_start = 10.0.0.5
  63. multi_host = True
  64. libvirt_xml_template = /usr/share/nova/libvirt.xml.template
  65. libvirt_nonblocking = True
  66. vpn_client_template = /usr/share/nova/client.ovpn.template
  67. credentials_template = /usr/share/nova/novarc.template
  68. rpc_backend = nova.rpc.impl_qpid
  69. root_helper = sudo nova-rootwrap
Advertisement
Add Comment
Please, Sign In to add comment