d8fcd1ae53
The openrc role will no longer be executed on all OpenStack service containers/hosts. Instead a single host is designated through the use of the ``openstack_service_setup_host`` variable. The default is ``localhost`` (the deployment host). While each playbook previously executed the role, it did not need to as the role is already in each service role's meta dependencies. Needed-By: https://review.openstack.org/568142 Change-Id: I7bb90264ee379db5410e7ec16c5bac1ee2c398dc
14 lines
504 B
YAML
14 lines
504 B
YAML
---
|
|
features:
|
|
- |
|
|
The openrc role will no longer be executed on all OpenStack
|
|
service containers/hosts. Instead a single host is designated
|
|
through the use of the ``openstack_service_setup_host``
|
|
variable. The default is ``localhost`` (the deployment host).
|
|
Deployers can opt to change this to the utility container by
|
|
implementing the following override in ``user_variables.yml``.
|
|
|
|
.. code-block:: yaml
|
|
|
|
openstack_service_setup_host: "{{ groups['utility_all'][0] }}"
|