Deployed Server - portmap should match neutron API

The cidr property for a Neutron subnet should contain
the network cidr, not the network prefixlen.

The example portmap for the fake neutron port in tripleo
depleoyed-server is not correct. We should pass the
netowork cidr in the subnets so that the fake neutron
port subnets attribute return something that match what
an actual neutron port would return.

Related-Bug: #1772396
Change-Id: I45f5cd1924c1d74cf12719dbed160ea960478850
This commit is contained in:
Harald Jensås 2018-05-28 01:04:46 +02:00
parent 5c01853b3d
commit dca6c0d03a
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ parameter_defaults:
fixed_ips:
- ip_address: 192.168.24.{{ 3 + loop.index0 }}
subnet:
- cidr: 24
- cidr: 192.168.24.0/24
{% endfor %}