Merge "Enable new LBaaS panel in Horizon"
This commit is contained in:
commit
8343d55bc4
@ -184,14 +184,15 @@ horizon_requires_pip_packages:
|
|||||||
|
|
||||||
horizon_pip_packages:
|
horizon_pip_packages:
|
||||||
- django-appconf
|
- django-appconf
|
||||||
|
- django-openstack-auth
|
||||||
- greenlet
|
- greenlet
|
||||||
- horizon
|
- horizon
|
||||||
- keystonemiddleware
|
- keystonemiddleware
|
||||||
- MySQL-python
|
- MySQL-python
|
||||||
- PyMySQL
|
- PyMySQL
|
||||||
|
- neutron-lbaas-dashboard
|
||||||
- oslo.config
|
- oslo.config
|
||||||
- ply
|
- ply
|
||||||
- pycrypto
|
- pycrypto
|
||||||
- python-memcached
|
- python-memcached
|
||||||
- python-keystoneclient
|
- python-keystoneclient
|
||||||
- django-openstack-auth
|
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
The new LBaaS v2 dashboard is available in Horizon. Deployers can enable
|
||||||
|
the panel by setting the following Ansible variable:
|
||||||
|
|
||||||
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
horizon_enable_neutron_lbaas: True
|
@ -56,6 +56,15 @@
|
|||||||
tags:
|
tags:
|
||||||
- horizon-branding
|
- horizon-branding
|
||||||
|
|
||||||
|
- name: Enable the neutron-lbaas-dashboard Horizon panel
|
||||||
|
file:
|
||||||
|
src: "{{ horizon_venv_lib_dir }}/neutron_lbaas_dashboard/enabled/_1481_project_ng_loadbalancersv2_panel.py"
|
||||||
|
path: "{{ horizon_venv_lib_dir }}/openstack_dashboard/local/enabled/_1481_project_ng_loadbalancersv2_panel.py"
|
||||||
|
state: "{{ (horizon_enable_neutron_lbaas | bool) | ternary('link', 'absent') }}"
|
||||||
|
notify: Restart apache2
|
||||||
|
tags:
|
||||||
|
- horizon-configs
|
||||||
|
|
||||||
- name: Create horizon links
|
- name: Create horizon links
|
||||||
file:
|
file:
|
||||||
src: "{{ item.src }}"
|
src: "{{ item.src }}"
|
||||||
|
@ -269,7 +269,6 @@ OPENSTACK_NEUTRON_NETWORK = {
|
|||||||
'enable_ipv6': {{ horizon_enable_ipv6 | bool }},
|
'enable_ipv6': {{ horizon_enable_ipv6 | bool }},
|
||||||
'enable_distributed_router': False,
|
'enable_distributed_router': False,
|
||||||
'enable_ha_router': False,
|
'enable_ha_router': False,
|
||||||
'enable_lb': {{ horizon_enable_neutron_lbaas | bool }},
|
|
||||||
'enable_firewall': {{ horizon_enable_neutron_fwaas | bool }},
|
'enable_firewall': {{ horizon_enable_neutron_fwaas | bool }},
|
||||||
'enable_vpn': {{ horizon_enable_neutron_vpnaas | bool }},
|
'enable_vpn': {{ horizon_enable_neutron_vpnaas | bool }},
|
||||||
'enable_fip_topology_check': True,
|
'enable_fip_topology_check': True,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user