This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git.
from 453aff5 Update docs/modules/ROOT/pages/tutorials/tekton/tekton.adoc add 2a16510 chore(build): Ability to specify the command in image task add 45187cb chore(build): Ability to specify the working directory in image task add 23ed8c4 chore(build): Generic image build task add e6718ef feat(build): Initial Buildah support add 4002835 feat(buildah): Support insecure registry option add e75027a feat(buildah): Support verbose logging option add 3769a2e feat(buildah): Parameterize Buildah image version add 166a5ba feat(buildah): Support HTTP/HTTPS proxy secret add 6e9d3a7 feat(buildah): Output image digest to container terminated state message add 61d596d feat(buildah): Reconcile image digest into Camel K build status add ba3281f fix(buildah): Export repository digest instead of image ID digest add 4b7fb24 feat(kit): Address image by repository digest if possible add 278e41d chore(s2i): Let the kit controller decide to use repository digest to address image add 7e3c3f0 feat(build): Default to using Buildah over Kaniko add 7b89958 chore(build): Unify image context creation across Buildah, Kaniko and S2I add ab14f9b chore(build): Rename image context creation builder steps add 066f5dc chore(build): Re-use context Dockerfile for S2I binary build add 43f94d0 feat(buildah): Support authentication to Docker registry add 98dc96c fix(e2e): Rename yaml quarkus integration add 8f9898d fix(e2e): Wait Knative service to be running before creating client integration No new revisions were added by this update. Summary of changes: e2e/knative_test.go | 2 +- e2e/run_test.go | 8 +- pkg/apis/camel/v1/build_types.go | 25 +- pkg/apis/camel/v1/build_types_support.go | 4 +- pkg/apis/camel/v1/integrationplatform_types.go | 10 +- pkg/apis/camel/v1/zz_generated.deepcopy.go | 71 +++--- pkg/builder/builder.go | 1 + pkg/builder/builder_steps.go | 65 ++--- pkg/builder/builder_types.go | 2 +- pkg/builder/kaniko/kaniko.go | 25 -- pkg/builder/kaniko/publisher.go | 54 ---- pkg/builder/s2i/publisher.go | 38 +-- pkg/controller/build/monitor_pod.go | 11 +- pkg/controller/build/schedule_pod.go | 8 +- pkg/controller/integrationkit/build.go | 15 ++ pkg/platform/defaults.go | 15 +- pkg/platform/platform.go | 10 - pkg/trait/builder.go | 330 ++++++++++++++++--------- pkg/trait/builder_test.go | 12 +- pkg/util/defaults/defaults.go | 3 + pkg/util/tar/appender.go | 148 ----------- pkg/util/util.go | 70 +++--- pkg/util/{tar/extract.go => zip/zip.go} | 43 ++-- script/Makefile | 4 +- 24 files changed, 423 insertions(+), 551 deletions(-) delete mode 100644 pkg/builder/kaniko/publisher.go delete mode 100644 pkg/util/tar/appender.go rename pkg/util/{tar/extract.go => zip/zip.go} (60%)