diff options
| author | Mihai Prica <prica.mihai@gmail.com> | 2013-05-17 17:41:58 +0300 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-08-28 18:41:55 -0400 |
| commit | c3302d1371bfc97e88f952d94589ae79ab61eaf8 (patch) | |
| tree | ea93e588b72fb05a542e218aa743ffbe9b0b0be5 /meta-openstack/recipes-devtools/python/python-nova | |
| parent | c05a223f2074e9b6899295da32e1edb7d19cbdf8 (diff) | |
| download | meta-cloud-services-c3302d1371bfc97e88f952d94589ae79ab61eaf8.tar.gz | |
python-nova: added 2013.1
The configuration files are populated with default options.
Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-nova')
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-nova/nova.conf | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-nova/nova.conf b/meta-openstack/recipes-devtools/python/python-nova/nova.conf new file mode 100644 index 0000000..a1632a0 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-nova/nova.conf | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | [DEFAULT] | ||
| 2 | firewall_driver = nova.virt.libvirt.firewall.IptablesFirewallDriver | ||
| 3 | compute_driver = libvirt.LibvirtDriver | ||
| 4 | libvirt_type = kvm | ||
| 5 | libvirt_cpu_mode = none | ||
| 6 | default_floating_pool = public | ||
| 7 | fixed_range = | ||
| 8 | force_dhcp_release = True | ||
| 9 | dhcpbridge_flagfile = /etc/nova/nova.conf | ||
| 10 | dhcpbridge_flagfile = /etc/nova/nova.conf | ||
| 11 | compute_scheduler_driver = nova.scheduler.filter_scheduler.FilterScheduler | ||
| 12 | rootwrap_config = /etc/nova/rootwrap.conf | ||
| 13 | api_paste_config = /etc/nova/api-paste.ini | ||
| 14 | allow_resize_to_same_host = true | ||
| 15 | auth_strategy = keystone | ||
| 16 | instances_path = /etc/nova/instances | ||
| 17 | debug = True | ||
| 18 | verbose = True | ||
| 19 | my_ip = 127.0.0.1 | ||
| 20 | |||
| 21 | #VNC | ||
| 22 | vnc_enabled = true | ||
| 23 | vncserver_listen = 0.0.0.0 | ||
| 24 | |||
| 25 | #Network | ||
| 26 | flat_interface = eth0 | ||
| 27 | flat_network_bridge = br1 | ||
| 28 | vlan_interface = eth0 | ||
| 29 | public_interface = br1 | ||
| 30 | network_manager = nova.network.manager.FlatDHCPManager | ||
| 31 | fixed_range= | ||
| 32 | force_dhcp_release=False | ||
| 33 | dhcpbridge=/usr/bin/nova-dhcpbridge | ||
| 34 | |||
| 35 | #Database configuration | ||
| 36 | #Sample MySQL configuration | ||
| 37 | #sql_connection = mysql://root:@localhost/nova?charset=utf8 | ||
| 38 | |||
| 39 | #Sample Sqlite configuration | ||
| 40 | sql_connection = sqlite:////etc/nova/nova.db | ||
| 41 | |||
| 42 | #Messaging system | ||
| 43 | #fake_rabbit=true | ||
| 44 | #Sample Qpid configuration | ||
| 45 | rpc_backend=nova.rpc.impl_qpid | ||
| 46 | qpid_hostname=localhost | ||
| 47 | qpid_broker=5672 | ||
| 48 | |||
