744270e64b
The numerous tags within the role have been condensed to two tags: neutron-install and neutron-config These tags have been chosen as they are namespaced and cover the two major functions of the role. Documentation has been updated to inform how each tag influences the function of the role. Change-Id: I5beda5397f1f4f6d03a4a6946700eb7aeab245ec
30 lines
720 B
ReStructuredText
30 lines
720 B
ReStructuredText
OpenStack Neutron
|
|
#################
|
|
:tags: openstack, neutron, cloud, ansible
|
|
:category: \*nix
|
|
|
|
Role for deployment, setup and installation of Neutron.
|
|
|
|
This role will install the following:
|
|
* neutron-server
|
|
* neutron-agents
|
|
|
|
.. code-block:: yaml
|
|
|
|
- name: Installation and setup of Neutron
|
|
hosts: neutron_all
|
|
user: root
|
|
roles:
|
|
- { role: "os_neutron", tags: [ "os-neutron" ] }
|
|
vars:
|
|
neutron_galera_address: "{{ internal_lb_vip_address }}"
|
|
|
|
Tags
|
|
====
|
|
|
|
This role supports two tags: ``neutron-install`` and ``neutron-config``
|
|
|
|
The ``neutron-install`` tag can be used to install and upgrade.
|
|
|
|
The ``neutron-config`` tag can be used to maintain configuration of the
|
|
service. |