From 11ee9ac8eb31f2cb53a2fd4438233588d93a83ba Mon Sep 17 00:00:00 2001 From: Updatebot Date: Mon, 26 Aug 2024 10:14:21 -0500 Subject: [PATCH] kustomize: Fix images schema The image name is specified in a field named `name`, not `image`. --- updatebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updatebot.py b/updatebot.py index fa67b2b..1debe13 100644 --- a/updatebot.py +++ b/updatebot.py @@ -136,7 +136,7 @@ class KustomizeProject(BaseProject): images = kustomization.setdefault('images', []) new_tag = self.tag_format.format(version=version) for image in images: - if image['image'] == self.image: + if image['name'] == self.image: image['newTag'] = new_tag break else: