This is an automated email from the ASF dual-hosted git repository.
gfournier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new fd3efa10d fix(pipeline) fix s2i image in publish task
fd3efa10d is described below
commit fd3efa10d864bbd0f7e5a080a079c4f36915aa7a
Author: mmajerni <[email protected]>
AuthorDate: Thu May 23 19:21:55 2024 +0200
fix(pipeline) fix s2i image in publish task
---
pkg/controller/build/monitor_pod.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/controller/build/monitor_pod.go
b/pkg/controller/build/monitor_pod.go
index 9e3fcf2d7..b45948c54 100644
--- a/pkg/controller/build/monitor_pod.go
+++ b/pkg/controller/build/monitor_pod.go
@@ -362,7 +362,7 @@ func publishTaskImageName(tasks []v1.Task) string {
case t.Jib != nil:
return t.Jib.Image
case t.S2i != nil:
- return t.S2i.Name
+ return t.S2i.Image
}
return ""