Merge "Enable IPv6 support in Horizon"
This commit is contained in:
commit
50d8dea61c
@ -86,6 +86,8 @@ horizon_enable_password_autocomplete: False
|
||||
# If nova_libvirt_inject_password is set to True, then this can also be enabled:
|
||||
horizon_can_set_password: False
|
||||
horizon_enable_cinder_backup: False
|
||||
# Enables IPv6 support in Horizon, such as managing network subnets
|
||||
horizon_enable_ipv6: True
|
||||
|
||||
# WSGI tuning parameters
|
||||
# horizon_wsgi_processes: 4
|
||||
|
14
releasenotes/notes/make-ipv6-a-toggle-63d9c839e204cdda.yaml
Normal file
14
releasenotes/notes/make-ipv6-a-toggle-63d9c839e204cdda.yaml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
Horizon's IPv6 support is now enabled by default. This allows users to
|
||||
manage subnets with IPv6 addresses within the Horizon interface. Deployers
|
||||
can disable IPv6 support in Horizon by setting the following variable:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
horizon_enable_ipv6: False
|
||||
|
||||
Please note: Horizon will still display IPv6 addresses in various panels
|
||||
with IPv6 support disabled. However, it will not allow any direct
|
||||
management of IPv6 configuration.
|
@ -266,7 +266,7 @@ OPENSTACK_CINDER_FEATURES = {
|
||||
OPENSTACK_NEUTRON_NETWORK = {
|
||||
'enable_router': True,
|
||||
'enable_quotas': True,
|
||||
'enable_ipv6': False,
|
||||
'enable_ipv6': {{ horizon_enable_ipv6 | bool }},
|
||||
'enable_distributed_router': False,
|
||||
'enable_ha_router': False,
|
||||
'enable_lb': {{ horizon_enable_neutron_lbaas | bool }},
|
||||
|
Loading…
Reference in New Issue
Block a user