mbroome

nova.conf

May 24th, 2012
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. [DEFAULT]
  2. logdir = /var/log/nova
  3. state_path = /var/lib/nova
  4. lock_path = /var/lib/nova/tmp
  5. dhcpbridge = /usr/bin/nova-dhcpbridge
  6. injected_network_template = /usr/share/nova/interfaces.template
  7. libvirt_xml_template = /usr/share/nova/libvirt.xml.template
  8. libvirt_nonblocking = True
  9. vpn_client_template = /usr/share/nova/client.ovpn.template
  10. credentials_template = /usr/share/nova/novarc.template
  11. rpc_backend = nova.rpc.impl_qpid
  12. root_helper = sudo nova-rootwrap
  13. notification_driver = nova.notifier.rabbit_notifier
  14.  
  15. # LOGS/STATE
  16. #verbose=False
  17. verbose=True
  18.  
  19. # AUTHENTICATION
  20. auth_strategy=keystone
  21.  
  22. # SCHEDULER
  23. compute_scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
  24.  
  25. # VOLUMES
  26. volume_group=nova-volumes
  27. volume_name_template=volume-%08x
  28. iscsi_helper=tgtadm
  29.  
  30. # DATABASE
  31. sql_connection=mysql://nova:[email protected]/nova
  32.  
  33. # COMPUTE
  34. libvirt_type=kvm
  35. connection_type=libvirt
  36. instance_name_template=instance-%08x
  37. api_paste_config=/etc/nova/api-paste.ini
  38. allow_resize_to_same_host=True
  39.  
  40. #default_ephemeral_format=ext4
  41.  
  42. # APIS
  43. osapi_compute_extension=nova.api.openstack.compute.contrib.standard_extensions
  44. ec2_dmz_host=192.168.95.12
  45. s3_host=192.168.95.12
  46.  
  47. # QPID
  48. qpid_hostname=192.168.95.12
  49.  
  50. # GLANCE
  51. image_service=nova.image.glance.GlanceImageService
  52. glance_api_servers=192.168.95.12:9292
  53.  
  54. # NETWORK
  55. multi_host=True
  56. network_manager=nova.network.manager.FlatDHCPManager
  57. force_dhcp_release=False
  58. dhcp_lease_time=1800
  59. dhcpbridge_flagfile=/etc/nova/nova.conf
  60. firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
  61. my_ip=192.168.95.12
  62. public_interface=eth0
  63. flat_network_bridge=br100
  64. flat_interface=eth1
  65. fixed_range=192.168.97.1/24
  66. dnsmasq_config_file=/etc/nova/dhcp-options.conf
  67. dhcp_domain=openstack.internal
  68.  
  69. # NOVNC CONSOLE
  70. novncproxy_base_url=http://192.168.95.12:6080/vnc_auto.html
  71. xvpvncproxy_base_url=htp://192.168.95.12:6081/console
  72. vncserver_proxyclient_address=192.168.95.12
  73. vncserver_listen=192.168.95.12
  74.  
  75.  
  76. # QUOTAS
  77. quota_ram = 960000
  78. quota_security_groups = 256
  79. quota_cores = 256
  80. quota_security_group_rules = 50
  81. quota_volumes = 2048
  82. quota_gigabytes = 10000
  83. quota_instances = 2048
Advertisement
Add Comment
Please, Sign In to add comment