From: Ramon Acedo Date: Thu, 28 Apr 2016 10:53:13 +0000 (+0100) Subject: Fixes ovs bonding option X-Git-Tag: opnfv-6.0.0~2012^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=75f662850a4c4e327270ad1f8291530d37e28328;p=apex-tripleo-heat-templates.git Fixes ovs bonding option Default ovs bonding options parameter BondInterfaceOvsOptions was wrongly set to "mode=active-backup" which makes os-net-config fail. This fix changes it to "bond_mode=active-backup". Change-Id: If3eaac6558c1a15ac09b198f90f05f1a77cf794b Closes-Bug: #1576137 --- diff --git a/environments/network-environment.yaml b/environments/network-environment.yaml index 005310c7..59311d10 100644 --- a/environments/network-environment.yaml +++ b/environments/network-environment.yaml @@ -47,4 +47,4 @@ parameter_defaults: # Set to empty string to enable multiple external networks or VLANs NeutronExternalNetworkBridge: "''" # Customize bonding options, e.g. "mode=4 lacp_rate=1 updelay=1000 miimon=100" - BondInterfaceOvsOptions: "mode=active-backup" + BondInterfaceOvsOptions: "bond_mode=active-backup"