From a8bf5e1c0edab54f7aca5d48a19e5a4661f842f8 Mon Sep 17 00:00:00 2001 From: Ronelle Landy Date: Tue, 3 Nov 2020 08:13:03 -0500 Subject: [PATCH] Do not set update_containers_append_tag for consumer jobs minion jobs are failing when set as consumer jobs as they are expecting containers with an -updated tag. This review does not set update_containers_append_tag when it is run within a consumer job. Depends-On: https://review.opendev.org/#/c/761402/ Change-Id: Icfc5b606616a7ffed6b6884935c7ea271c2f2720 --- roles/container-prep/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/container-prep/tasks/main.yml b/roles/container-prep/tasks/main.yml index c1c32ab44..54fc68b71 100644 --- a/roles/container-prep/tasks/main.yml +++ b/roles/container-prep/tasks/main.yml @@ -63,6 +63,7 @@ when: - update_containers_append_tag is undefined - (update_containers is defined and update_containers|bool) or (standalone_container_prep_updates is defined and standalone_container_prep_updates|bool) + - not job.consumer_job | default(false) | bool tags: - undercloud-install