From 310f3e382be499684f8b5416528c97c6aed50d2d Mon Sep 17 00:00:00 2001 From: agopi Date: Fri, 28 Dec 2018 08:13:26 -0500 Subject: [PATCH] Workaround to install specific version of dogpile.cache openstacksdk recently made changes to avoid newer dogpile.cache versions[1], and this breaks while loading plugins from rally-openstack. As a workaround, temporarily installing a dogpile.cache that satisfies openstacksdk's requirements. [1] https://github.com/openstack/openstacksdk/commit/fd61b546796af5847a92774b064eb21e2f0a22e1 Change-Id: I7cb41b7c484f5afd180b0d815dd655459382fba3 --- ansible/install/roles/rally/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ansible/install/roles/rally/tasks/main.yml b/ansible/install/roles/rally/tasks/main.yml index 47431d341..5f6172011 100644 --- a/ansible/install/roles/rally/tasks/main.yml +++ b/ansible/install/roles/rally/tasks/main.yml @@ -15,6 +15,12 @@ line: 'export REQUESTS_CA_BUNDLE={{ overcloud_ca_path }}' when: overcloud_ca_path is defined +- name: Temporary workaround to avoid conflicts with dogpile.cache + pip: + name: dogpile.cache + version: 0.6.8 + virtualenv: "{{ rally_venv }}" + - name: Install Rally with OpenStack plugins into rally-venv pip: name: rally-openstack