Merge "Add provider_physical_network option to private network"

This commit is contained in:
Zuul 2019-08-27 10:47:56 +00:00 committed by Gerrit Code Review
commit b177e06ed0
2 changed files with 4 additions and 0 deletions

View File

@ -121,6 +121,9 @@ tempest_private_subnet_name: "private-subnet"
tempest_private_subnet_cidr: "192.168.74.0/28"
tempest_private_net_provider_type: "vxlan"
tempest_private_net_seg_id: 1
# If you choose vlan as private network provider type, you must set a physical
# name for it
# tempest_private_net_physical_name: "private"
# Public network configuration
# Currently supports 2 types

View File

@ -150,6 +150,7 @@
validate_certs: "{{ tempest_keystone_interface_insecure | ternary(false, true) }}"
name: "{{ tempest_private_net_name }}"
provider_network_type: "{{ tempest_private_net_provider_type }}"
provider_physical_network: "{{ tempest_private_net_physical_name | default(omit) }}"
provider_segmentation_id: "{{ tempest_private_net_seg_id | default(omit, true) }}"
project: "{{ keystone_demo_tenant_id }}"
register: tempest_private_network