Install placement osc plugin on utility machines

Include the placement OpenStack client plugin in the list of OpenStack
clients to be installed on utility machines.

Change-Id: I59e259e749be8932d03886831904cc7085fa40d4
This commit is contained in:
Jimmy McCrory 2019-07-18 16:40:42 -07:00
parent 74a9856ca0
commit f1aa51b20e

View File

@ -104,7 +104,10 @@
_openstack_client_list: >-
{%- set package_list = [] %}
{%- for l in _abs_reqs.content.split('\n') %}
{%- if (l is match('^python-.*client==.*$')) or (l is match('^(aodh|gnocchi)client==.*$')) %}
{%- if (l is match('^python-.*client==.*$')) or
(l is match('^(aodh|gnocchi)client==.*$')) or
(l is match('^osc-placement==.*$'))
%}
{%- set _ = package_list.append(l | regex_replace('==.*$', '')) %}
{%- endif %}
{%- endfor %}