Fix TenantInterfaceDefaultRoute in net-env-v6
The TenantInterfaceDefaultRoute in network-environment-v6.j2.yaml should use the ipv4 gateway address. Closes-Bug: #1867207 Change-Id: If011da577adec7d95e0caf8f1c9c6cb88581cae1
This commit is contained in:
parent
401d519921
commit
26e4a0ab59
@ -37,16 +37,20 @@ parameter_defaults:
|
||||
# Leave room if the external network is also used for floating IPs
|
||||
{%- endif %}
|
||||
{{network.name}}AllocationPools: {{network.ipv6_allocation_pools}}
|
||||
{%- if network.gateway_ipv6|default(false) %}
|
||||
# Gateway router for routable networks
|
||||
{{network.name}}InterfaceDefaultRoute: '{{network.gateway_ipv6}}'
|
||||
{%- endif %}
|
||||
{%- else %}
|
||||
# Tenant tunneling network is IPv4 until IPv6 is fully supported
|
||||
# Customize the IP subnets to match the local environment
|
||||
{{network.name}}NetCidr: '{{network.ip_subnet}}'
|
||||
# Customize the IP range to use for static IPs and VIPs
|
||||
{{network.name}}AllocationPools: {{network.allocation_pools}}
|
||||
{%- endif %}
|
||||
{%- if network.gateway_ipv6|default(false) %}
|
||||
{%- if network.gateway_ip|default(false) %}
|
||||
# Gateway router for routable networks
|
||||
{{network.name}}InterfaceDefaultRoute: '{{network.gateway_ipv6}}'
|
||||
{{network.name}}InterfaceDefaultRoute: '{{network.gateway_ip}}'
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- if network.vlan is defined %}
|
||||
# Customize the VLAN ID to match the local environment
|
||||
|
Loading…
Reference in New Issue
Block a user