Add ability to make public network shared

In some cases it might be required to have shared network for tempest
test. A good example might be trove test that assume having that.

Change-Id: I359c7caafc515ff2db0989e04fb0bc33ab843ba8
This commit is contained in:
Dmitriy Rabotyagov 2024-05-13 11:43:09 +02:00
parent 05b8517bf8
commit a2186f4ab9
2 changed files with 2 additions and 0 deletions

View File

@ -220,6 +220,7 @@ tempest_public_subnet_cidr: "10.1.13.0/24"
# tempest_public_subnet_gateway_ip:
tempest_public_net_provider_type: "flat"
tempest_public_net_physical_name: "physnet1"
tempest_public_net_shared: False
# tempest_public_net_seg_id:
tempest_public_router_external: "True"
# Example allocation range:

View File

@ -153,6 +153,7 @@
segmentation_id: "{{ tempest_public_net_seg_id | default(omit) }}"
external: "{{ tempest_public_router_external }}"
project: "{{ keystone_demo_tenant_id }}"
shared: "{{ tempest_public_net_shared }}"
subnets:
- name: "{{ tempest_public_subnet_name }}"
cidr: "{{ tempest_public_subnet_cidr }}"