diff options
Diffstat (limited to 'deploy/adapters/ansible/roles/config-compute/templates')
-rw-r--r-- | deploy/adapters/ansible/roles/config-compute/templates/compute.j2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deploy/adapters/ansible/roles/config-compute/templates/compute.j2 b/deploy/adapters/ansible/roles/config-compute/templates/compute.j2 index 60cb12ac..e7b79436 100644 --- a/deploy/adapters/ansible/roles/config-compute/templates/compute.j2 +++ b/deploy/adapters/ansible/roles/config-compute/templates/compute.j2 @@ -64,13 +64,13 @@ iface br-external inet static gateway {{ ip_settings[inventory_hostname]["external"]["gw"] }} offload-sg off # Create veth pair, don't bomb if already exists - pre-up ip link add br-external-veth type veth peer name external-nic || true + pre-up ip link add external-veth type veth peer name external-nic || true # Set both ends UP - pre-up ip link set br-external-veth up + pre-up ip link set external-veth up pre-up ip link set external-nic up # Delete veth pair on DOWN - post-down ip link del br-external-veth || true - bridge_ports br-external-veth + post-down ip link del external-veth || true + bridge_ports external-veth # VXLAN (tunnel/overlay) bridge config auto br-tenant |