Fix for post configure upgrading openstacksdk

provision-net post configure interim unshare task is using regular
pip_upper_constraints_file which upgrades openstacksdk to version
higher than supported by currently used openstack cloud modules

Change-Id: Ib4cfe7c592fc8b5ae353406ad675b61c3120e0e3
This commit is contained in:
Bartosz Bezak 2024-03-26 14:11:19 +01:00
parent 22ef31d9b9
commit f1e53ebf32
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@
pip:
name: python-openstackclient
state: latest
extra_args: "{% if pip_upper_constraints_file %}-c {{ pip_upper_constraints_file }}{% endif %}"
extra_args: "{% if openstacksdk_upper_constraints_file %}-c {{ openstacksdk_upper_constraints_file }}{% endif %}"
virtualenv: "{{ venv }}"
when: network_registrations | rejectattr('shared') | list | length > 0