From 32ecb8a001182f546ace61ab7d4c000852a18721 Mon Sep 17 00:00:00 2001 From: Saravanan KR Date: Mon, 24 Sep 2018 19:08:58 +0530 Subject: [PATCH] Fix error in Tenant network routes definition Deploying with network_data_routed.yaml is throwing 'Unknown Property ip_netmask' for the Tenant network routes. Fix the network_data_routed.yaml definition to use the right keys for the route definition. Change-Id: Ied81ed342dbeb026225b01aeed66aca7411b3555 (cherry picked from commit 00652b65960b34ae101a0e4152dec1dd40093d1d) --- network_data_routed.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network_data_routed.yaml b/network_data_routed.yaml index 74959d01c3..58a0f70fc0 100644 --- a/network_data_routed.yaml +++ b/network_data_routed.yaml @@ -144,7 +144,7 @@ vlan: 50 ip_subnet: '172.16.0.0/24' gateway_ip: '172.16.0.1' - routes: [{'ip_netmask':'172.16.0.0/20', 'next_hop':'172.16.0.1'}] + routes: [{'destination':'172.16.0.0/20', 'nexthop':'172.16.0.1'}] allocation_pools: [{'start': '172.16.0.4', 'end': '172.16.0.250'}] # Note that tenant tunneling is only compatible with IPv4 addressing at this time. ipv6_subnet: 'fd00:fd00:fd00:5000::/64'