From 7fac7e762d4190704c1e99325e93af4b285950cd Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Mon, 25 Jul 2022 13:10:15 +0200 Subject: [PATCH] Fix container image publish to Docker Hub Publishing container images to Docker Hub was failing with: state is present but all of the following are missing: source This is caused by the recent Ansible upgrade by Zuul [1]: the source parameter is mandatory since Ansible 2.12. [1] https://review.opendev.org/c/openstack/project-config/+/849120 Change-Id: I232fe835f5a650c258243f1ee4720480f2e6e7b1 (cherry picked from commit 2da76f78dee53ae84bfe6da051367d9b320af0f6) --- tests/playbooks/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/playbooks/publish.yml b/tests/playbooks/publish.yml index 33a497b094..4e27086f22 100644 --- a/tests/playbooks/publish.yml +++ b/tests/playbooks/publish.yml @@ -21,6 +21,7 @@ docker_image: name: "{{ item.RepoTags.0 }}" push: yes + source: local loop: "{{ docker_host_info.images }}" when: kolla_registry == 'dockerhub'