Docs/Reno: Add support for Horizon customization module

Depends-On: Ie638c826abe43f1f484f16e60b90fbe25c684c6e
Change-Id: Ia7acfb1532f6494f9baad770b7a9f0ab3a300625
This commit is contained in:
Logan V 2016-02-02 21:54:08 -06:00 committed by Jesse Pretorius (odyssey4me)
parent 18c7efbda1
commit 24d578318b
2 changed files with 19 additions and 0 deletions

View File

@ -17,6 +17,19 @@ options.
.. _Securing services with SSL certificates: configure-sslcertificates.html
Configuring a Horizon Customization Module
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Openstack-Ansible supports deployment of a Horizon `customization module`_.
After building your customization module, configure the ``horizon_customization_module`` variable
with a path to your module.
.. code-block:: yaml
horizon_customization_module: /path/to/customization_module.py
.. _customization module: http://docs.openstack.org/developer/horizon/topics/customizing.html#horizon-customization-module-overrides
--------------
.. include:: navigation.txt

View File

@ -0,0 +1,6 @@
---
features:
- Horizon deployment now supports an operator provided customization module
which can be configured using the ``horizon_customization_module`` variable.
Please see `the Horizon documentation <http://docs.openstack.org/developer/openstack-ansible/install-guide/configure-horizon.html>`_
for more information.