We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9687115 commit 428f371Copy full SHA for 428f371
tests/playbooks/publish.yml
@@ -4,6 +4,15 @@
4
# NOTE(yoctozepto): We need Docker SDK, the best source is Kolla venv.
5
ansible_python_interpreter: "{{ virtualenv_path }}/bin/python"
6
tasks:
7
+ # TODO(bbezak): Currently Zuul supports Ansible 8 or 9, which
8
+ # uses community.docker collection that needs requests<2.32.
9
+ # Remove this when Zuul supports Ansible 10,
10
+ # and/or Ansible 9 gets fixed community.docker collection.
11
+ # https://github.com/ansible-collections/community.docker/issues/868
12
+ - name: Downgrade requests for community.docker collection
13
+ command:
14
+ cmd: "{{ virtualenv_path }}/bin/python -m pip install -v 'requests<2.32'"
15
+
16
- name: List all containers
17
docker_host_info:
18
images: yes
0 commit comments