Merge "Make router creation independent from tempest_public_net_create"

This commit is contained in:
Zuul 2022-07-13 22:56:34 +00:00 committed by Gerrit Code Review
commit ef333a4e7e

View File

@ -56,7 +56,7 @@
- name: Ensure that all required variables are set when tempest_router_create is enabled - name: Ensure that all required variables are set when tempest_router_create is enabled
assert: assert:
that: that:
- tempest_public_net_create - (tempest_public_net_create or tempest_neutron_public_network_id is defined)
- tempest_private_net_create - tempest_private_net_create
when: when:
- tempest_router_create - tempest_router_create
@ -264,7 +264,7 @@
interface: "{{ tempest_interface_name }}" interface: "{{ tempest_interface_name }}"
validate_certs: "{{ tempest_keystone_interface_insecure | ternary(false, true) }}" validate_certs: "{{ tempest_keystone_interface_insecure | ternary(false, true) }}"
name: router name: router
network: "{{ tempest_public_net_name }}" network: "{{ tempest_neutron_public_network_id }}"
interfaces: interfaces:
- "{{ tempest_private_subnet_name }}" - "{{ tempest_private_subnet_name }}"
project: "{{ keystone_demo_tenant_id }}" project: "{{ keystone_demo_tenant_id }}"