From bae0da54adae5f077b49464e224f7cc3ae5de948 Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Tue, 5 Feb 2019 17:13:21 -0500 Subject: [PATCH] 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 --- .../roles/bootstrap-host/templates/user_variables.aio.yml.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/roles/bootstrap-host/templates/user_variables.aio.yml.j2 b/tests/roles/bootstrap-host/templates/user_variables.aio.yml.j2 index f4c8d6814a..113626ca0c 100644 --- a/tests/roles/bootstrap-host/templates/user_variables.aio.yml.j2 +++ b/tests/roles/bootstrap-host/templates/user_variables.aio.yml.j2 @@ -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"