CI: Ensure docker-py is installed on publish

After a recent change [1] publish jobs are failing on missing docker python
SDK.

[1]: https://review.opendev.org/c/openstack/kolla/+/763146

Change-Id: I63662dd903b914fe06165b45e0a0bb5ca74b21b9
This commit is contained in:
Michał Nasiadka 2020-11-26 10:31:25 +01:00 committed by Michal Nasiadka
parent 460a439c7d
commit 07dd933043
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,12 @@
---
- hosts: all
tasks:
- name: Ensure docker python SDK is installed
become: true
pip:
name: "docker"
state: present
- name: List all containers
docker_host_info:
images: yes