nspawn: use correct network range for tempest

The network range used for the flat network is incorrect and it leads
to an unreachable scenario.  This patch fixes it and a follow-up patch
will converge both configs in the future.

Change-Id: I5cf97d964a162d6406501b941c08ae7dfb134e09
This commit is contained in:
Mohammed Naser 2019-02-05 17:13:21 -05:00
parent 52f37cdac0
commit bae0da54ad
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ install_method: "{{ bootstrap_host_install_method }}"
## Tempest settings
{% if bootstrap_host_container_tech == 'nspawn' %}
tempest_public_subnet_cidr: "172.29.236.0/22"
tempest_public_subnet_allocation_pools: "172.29.239.110-172.29.239.200"
tempest_public_subnet_cidr: "172.29.240.0/22"
tempest_public_subnet_allocation_pools: "172.29.243.110-172.29.243.200"
{% else %}
## Tempest settings
tempest_public_subnet_cidr: "172.29.248.0/22"