Merge "Enable IPv6 support in Horizon"

This commit is contained in:
Jenkins 2016-05-05 15:45:30 +00:00 committed by Gerrit Code Review
commit 50d8dea61c
3 changed files with 17 additions and 1 deletions

View File

@ -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

View 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.

View File

@ -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 }},