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 685602ed5 (commit) to 34e4da917 (commit) discard 685602ed5 chore(ci): v2.6.0-nightly release updates add 67faf9538 chore: remove reference to Openshift add f04b2e132 feat(install): remove KEP 1755 add 6c0bba950 feat(helm): align resources for helm add 85ee31bb5 chore: nightly automatic updates new 34e4da917 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 (685602ed5) \ N -- N -- N refs/tags/v2.6.0-nightly (34e4da917) 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: README.adoc | 4 +- docs/charts/camel-k-2.6.0-nightly.tgz | Bin 233529 -> 233420 bytes docs/charts/index.yaml | 6 +- .../ROOT/pages/installation/installation.adoc | 2 +- e2e/install/helm/setup_test.go | 2 +- e2e/support/test_support.go | 3 +- .../camel-k/templates/builder-service-account.yaml | 23 -- .../templates/{platform.yaml => default-itp.yaml} | 0 .../templates/operator-cluster-role-bindings.yaml | 196 ---------- .../{operator.yaml => operator-deployment.yaml} | 0 helm/camel-k/templates/operator-role-binding.yaml | 50 --- ...tor-service-account.yaml => operator-svcs.yaml} | 9 + helm/camel-k/templates/rbacs-common.yaml | 243 +++++++++++++ .../{operator-role.yaml => rbacs-descoped.yaml} | 221 ++++++++++-- ...or-cluster-roles.yaml => rbacs-namespaced.yaml} | 401 +++++++++++---------- install/base/kustomization.yaml | 12 - .../overlays/platform/integration-platform.yaml | 3 - pkg/install/cluster.go | 7 - pkg/install/operator.go | 8 - pkg/platform/defaults.go | 14 +- .../{manager => helm/common}/kustomization.yaml | 14 +- .../helm/common/patch-rolebinding-subjects.yaml | 4 +- .../{manager => helm/descoped}/kustomization.yaml | 14 +- .../helm/descoped/patch-rolebinding-subjects.yaml | 4 +- .../namespaced}/kustomization.yaml | 9 +- .../bases/camel-k.clusterserviceversion.yaml | 2 +- pkg/resources/config/rbac/kustomization.yaml | 16 +- .../rbac/operator-cluster-role-local-registry.yaml | 28 -- .../rbac/operator-role-binding-local-registry.yaml | 31 -- pkg/trait/deployer.go | 4 +- pkg/trait/platform.go | 5 - pkg/util/registry/kep_1755.go | 98 ----- script/Makefile | 1 + script/gen_helm.sh | 36 ++ 34 files changed, 732 insertions(+), 738 deletions(-) delete mode 100644 helm/camel-k/templates/builder-service-account.yaml rename helm/camel-k/templates/{platform.yaml => default-itp.yaml} (100%) delete mode 100644 helm/camel-k/templates/operator-cluster-role-bindings.yaml rename helm/camel-k/templates/{operator.yaml => operator-deployment.yaml} (100%) delete mode 100644 helm/camel-k/templates/operator-role-binding.yaml rename helm/camel-k/templates/{operator-service-account.yaml => operator-svcs.yaml} (91%) create mode 100644 helm/camel-k/templates/rbacs-common.yaml rename helm/camel-k/templates/{operator-role.yaml => rbacs-descoped.yaml} (59%) rename helm/camel-k/templates/{operator-cluster-roles.yaml => rbacs-namespaced.yaml} (71%) copy pkg/resources/config/{manager => helm/common}/kustomization.yaml (84%) copy install/overlays/kubernetes/descoped/patch-operator-id.yaml => pkg/resources/config/helm/common/patch-rolebinding-subjects.yaml (93%) copy pkg/resources/config/{manager => helm/descoped}/kustomization.yaml (84%) copy install/overlays/kubernetes/descoped/patch-operator-id.yaml => pkg/resources/config/helm/descoped/patch-rolebinding-subjects.yaml (93%) copy pkg/resources/config/{manager => helm/namespaced}/kustomization.yaml (90%) delete mode 100644 pkg/resources/config/rbac/operator-cluster-role-local-registry.yaml delete mode 100644 pkg/resources/config/rbac/operator-role-binding-local-registry.yaml delete mode 100644 pkg/util/registry/kep_1755.go create mode 100755 script/gen_helm.sh