This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to tag v2.6.0-nightly in repository https://gitbox.apache.org/repos/asf/camel-k.git
*** WARNING: tag v2.6.0-nightly was modified! *** from 9a0943190 (commit) to 18b8f692a (commit) discard 9a0943190 chore(ci): v2.6.0-nightly release updates add e542896fc chore(dependencies): upgrade kube api to 0.30.7 add e79d78603 chore: nightly automatic updates add 9b5782684 chore(controller): builder permissions static add f90fc8b27 chore(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 add 815cff9d5 chore(deps): bump github.com/onsi/gomega from 1.35.1 to 1.36.0 add 776ef4f5a feat(builder): dependencies privileges add 1d74661ad fix(install): allow Jib executable on OCP add f15f752d7 fix(install): namespaced openshift resources add 854268025 chore(doc): fix comment in Makefile add 6a41a359c fix(doc): kamelet distribution instructions new 18b8f692a chore(ci): v2.6.0-nightly release updates This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the tag are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (9a0943190) \ N -- N -- N refs/tags/v2.6.0-nightly (18b8f692a) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: docs/antora.yml | 2 +- docs/charts/camel-k-2.6.0-nightly.tgz | Bin 233541 -> 233541 bytes docs/charts/index.yaml | 6 +-- .../ROOT/pages/installation/installation.adoc | 3 +- .../ROOT/pages/kamelets/kamelets-distribution.adoc | 10 ++-- go.mod | 16 +++--- go.sum | 35 +++++++------ .../overlays/openshift/descoped/kustomization.yaml | 33 ------------ .../openshift/descoped/patch-operator-id.yaml | 20 -------- .../descoped/patch-watch-namespace-global.yaml | 22 -------- .../openshift/namespaced/kustomization.yaml | 30 ----------- .../openshift/namespaced/patch-operator-id.yaml | 20 -------- pkg/builder/image.go | 2 +- pkg/builder/jib.go | 1 + pkg/builder/jib_test.go | 4 +- pkg/controller/integrationkit/build.go | 7 --- pkg/controller/integrationplatform/kamelets.go | 6 ++- .../integrationplatform/kamelets_test.go | 3 +- pkg/install/builder.go | 57 --------------------- pkg/install/operator.go | 8 +-- pkg/platform/defaults.go | 26 ---------- .../manager}/builder-role-binding-openshift.yaml | 0 .../manager}/builder-role-binding.yaml | 0 .../manager}/builder-role-openshift.yaml | 0 .../builder => config/manager}/builder-role.yaml | 0 .../manager}/builder-service-account.yaml | 0 pkg/resources/config/manager/kustomization.yaml | 5 ++ .../manager/patch-image-pull-policy-always.yaml | 27 ---------- .../bases/camel-k.clusterserviceversion.yaml | 2 +- .../config/rbac/descoped/kustomization.yaml | 2 + .../operator-cluster-role-binding-openshift.yaml | 0 .../descoped/operator-cluster-role-openshift.yaml | 0 .../config/rbac/namespaced/kustomization.yaml | 2 + .../operator-role-binding-openshift.yaml | 2 +- .../namespaced/operator-role-openshift.yaml | 2 +- .../rbac/openshift/descoped/kustomization.yaml | 26 ---------- .../config/rbac/openshift/kustomization.yaml | 26 ---------- .../rbac/openshift/namespaced/kustomization.yaml | 26 ---------- ...tor-cluster-role-console-binding-openshift.yaml | 30 ----------- .../operator-cluster-role-console-openshift.yaml | 37 ------------- pkg/trait/deployer.go | 4 +- pkg/util/jib/configuration.go | 2 +- pkg/util/util.go | 5 +- script/Makefile | 15 ++---- 44 files changed, 74 insertions(+), 450 deletions(-) delete mode 100644 install/overlays/openshift/descoped/kustomization.yaml delete mode 100644 install/overlays/openshift/descoped/patch-operator-id.yaml delete mode 100644 install/overlays/openshift/descoped/patch-watch-namespace-global.yaml delete mode 100644 install/overlays/openshift/namespaced/kustomization.yaml delete mode 100644 install/overlays/openshift/namespaced/patch-operator-id.yaml delete mode 100644 pkg/install/builder.go rename pkg/resources/{resources/builder => config/manager}/builder-role-binding-openshift.yaml (100%) rename pkg/resources/{resources/builder => config/manager}/builder-role-binding.yaml (100%) rename pkg/resources/{resources/builder => config/manager}/builder-role-openshift.yaml (100%) rename pkg/resources/{resources/builder => config/manager}/builder-role.yaml (100%) rename pkg/resources/{resources/builder => config/manager}/builder-service-account.yaml (100%) delete mode 100644 pkg/resources/config/manager/patch-image-pull-policy-always.yaml rename pkg/resources/config/rbac/{openshift => }/descoped/operator-cluster-role-binding-openshift.yaml (100%) rename pkg/resources/config/rbac/{openshift => }/descoped/operator-cluster-role-openshift.yaml (100%) rename pkg/resources/config/rbac/{openshift => }/namespaced/operator-role-binding-openshift.yaml (96%) rename pkg/resources/config/rbac/{openshift => }/namespaced/operator-role-openshift.yaml (99%) delete mode 100644 pkg/resources/config/rbac/openshift/descoped/kustomization.yaml delete mode 100644 pkg/resources/config/rbac/openshift/kustomization.yaml delete mode 100644 pkg/resources/config/rbac/openshift/namespaced/kustomization.yaml delete mode 100644 pkg/resources/config/rbac/openshift/operator-cluster-role-console-binding-openshift.yaml delete mode 100644 pkg/resources/config/rbac/openshift/operator-cluster-role-console-openshift.yaml