network: use params to configure provider networks
Close bug #167 Signed-off-by: Emilien Macchi <emilien.macchi@enovance.com>
This commit is contained in:
parent
b5ae7d21a6
commit
4e0aae66c2
@ -41,11 +41,11 @@
|
|||||||
#
|
#
|
||||||
# [*provider_vlan_ranges*]
|
# [*provider_vlan_ranges*]
|
||||||
# (optionnal) VLAN range for provider networks
|
# (optionnal) VLAN range for provider networks
|
||||||
# Default value to ['physnet1:1000:2999']
|
# Default value in params
|
||||||
#
|
#
|
||||||
# [*provider_bridge_mappings*]
|
# [*provider_bridge_mappings*]
|
||||||
# (optionnal) Bridge mapping for provider networks
|
# (optionnal) Bridge mapping for provider networks
|
||||||
# Default value to ['physnet1:br-eth1']
|
# Default value in params
|
||||||
#
|
#
|
||||||
|
|
||||||
class cloud::network(
|
class cloud::network(
|
||||||
@ -55,8 +55,8 @@ class cloud::network(
|
|||||||
$rabbit_password = $os_params::rabbit_password,
|
$rabbit_password = $os_params::rabbit_password,
|
||||||
$tunnel_eth = $os_params::tunnel_eth,
|
$tunnel_eth = $os_params::tunnel_eth,
|
||||||
$api_eth = $os_params::api_eth,
|
$api_eth = $os_params::api_eth,
|
||||||
$provider_vlan_ranges = ['physnet1:1000:2999'],
|
$provider_vlan_ranges = $os_params::provider_vlan_ranges,
|
||||||
$provider_bridge_mappings = ['physnet1:br-eth1']
|
$provider_bridge_mappings = $os_params::provider_bridge_mappings
|
||||||
) {
|
) {
|
||||||
|
|
||||||
class { 'neutron':
|
class { 'neutron':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user