Skip to content

Commit

Permalink
fix(pipeline) fix s2i image in publish task
Browse files Browse the repository at this point in the history
  • Loading branch information
mmajerni committed May 23, 2024
1 parent 8f63c56 commit b6538e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/build/monitor_pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / olm

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / non-olm

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / knative-test

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / common-it

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / builder-it (Jib)

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / upgrade

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / validate

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image) (typecheck)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / validate

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)) (typecheck)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / yaks-test

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / common-it-advanced

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / security

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / builder-it (Spectrum)

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)

Check failure on line 365 in pkg/controller/build/monitor_pod.go

View workflow job for this annotation

GitHub Actions / telemetry-it

t.S2i.Image undefined (type *"github.com/apache/camel-k/v2/pkg/apis/camel/v1".S2iTask has no field or method Image)
}

return ""
Expand Down

0 comments on commit b6538e0

Please sign in to comment.