enable ovs agent on controller by default

Previously, the ovs agent was not enabled on
the controller by default. This lead to a
non-functional default configuration.

This patch changes the default to true

Change-Id: I847bf6ec62cf91fdc303bd07afd9b6a3097f37e7
This commit is contained in:
Dan Bode
2013-05-31 16:54:48 -07:00
parent ea39c77584
commit b5faef09c8
2 changed files with 2 additions and 2 deletions

View File

@@ -167,7 +167,7 @@ class openstack::controller (
$quantum = true,
$bridge_interface = undef,
$external_bridge_name = 'br-ex',
$enable_ovs_agent = false,
$enable_ovs_agent = true,
$enable_dhcp_agent = true,
$enable_l3_agent = true,
$enable_metadata_agent = true,

View File

@@ -507,7 +507,7 @@ describe 'openstack::controller' do
:ovs_local_ip => '10.0.0.3',
:bridge_uplinks => ["br-ex:eth_27"],
:bridge_mappings => ["default:br-ex"],
:enable_ovs_agent => false,
:enable_ovs_agent => true,
:firewall_driver => 'quantum.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver',
:db_name => 'quantum',
:db_user => 'quantum',