Skip to content

Commit

Permalink
BZ #1045132 - l3 external_network_bridge now configurable.
Browse files Browse the repository at this point in the history
https://bugzilla.redhat.com/show_bug.cgi?id=1045132

$external_network_bridge is used to configure the external_network_bridge
in /etc/neutron/l3_agent.ini .  Set to '' to use a provider
network instead.
  • Loading branch information
cwolferh committed Dec 20, 2013
1 parent 8189998 commit 7a7fe55
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions puppet/modules/quickstack/manifests/neutron/networker.pp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
$public_interface = $quickstack::params::public_interface,
$mysql_host = $quickstack::params::mysql_host,
$qpid_host = $quickstack::params::qpid_host,
$bridge_name = 'br-ex',
$external_network_bridge = 'br-ex',
$bridge_keep_ip = true,
$tenant_network_type = $quickstack::params::tenant_network_type,
$ovs_bridge_mappings = $quickstack::params::ovs_bridge_mappings,
Expand Down Expand Up @@ -61,7 +61,9 @@

class { '::neutron::agents::dhcp': }

class { '::neutron::agents::l3': }
class { '::neutron::agents::l3':
external_network_bridge => $external_network_bridge,
}

class { 'neutron::agents::metadata':
auth_password => $admin_password,
Expand Down

0 comments on commit 7a7fe55

Please sign in to comment.