14d5186079
In order to reduce the packages required to pip install on to the hosts, we use service delegation to octavia_service_setup_host so that instead of installing software on the target host, and putting credentials on every target host, we isolate the software and credentials to a single host. In this patch we finally remove octavia_requires_pip_packages as it is no longer required given that all services use delegation to the octavia_service_setup_host now. We also remove the task which used to install them. We also remove the meta dependency on the openstack_openrc role because the target host does not require openrc/clouds.yaml any more. We remove the variable 'octavia_ansible_endpoint_type' as it is no longer used. We finally remove the python-pip package from the distro packages, as with these changes, pip is no longer required on the host - everything installed by pip is isolated into a venv. Change-Id: If3f65fdb8a59a3c41cb8c2f0dee6b2e5a71f05c7
26 lines
966 B
YAML
26 lines
966 B
YAML
---
|
|
features:
|
|
- |
|
|
The service setup in keystone for octavia will now be executed
|
|
through delegation to the ``octavia_service_setup_host`` which,
|
|
by default, is ``localhost`` (the deploy host). Deployers can
|
|
opt to rather change this to the utility container by implementing
|
|
the following override in ``user_variables.yml``.
|
|
|
|
.. code-block:: yaml
|
|
|
|
octavia_service_setup_host: "{{ groups['utility_all'][0] }}"
|
|
|
|
deprecations:
|
|
- |
|
|
The variable ``octavia_requires_pip_packages`` is no longer required
|
|
and has therefore been removed.
|
|
- |
|
|
The variable ``octavia_image_downloader`` has been removed. The image
|
|
download now uses the same host designated by the
|
|
``octavia_service_setup_host`` for the image download.
|
|
- |
|
|
The variable ``octavia_ansible_endpoint_type`` has been removed. The
|
|
endpoint used for ansible tasks has been hard set to the 'admin'
|
|
endpoint as is commonly used across all OSA roles.
|