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 00652b6596)
This commit is contained in:
Saravanan KR 2018-09-24 19:08:58 +05:30 committed by Harald Jensås
parent f425749c22
commit 32ecb8a001
1 changed files with 1 additions and 1 deletions

View File

@ -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'