This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
from 67faf9538 chore: remove reference to Openshift
new f04b2e132 feat(install): remove KEP 1755
new 6c0bba950 feat(helm): align resources for helm
The 2 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:
.../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 +-
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 ++
30 files changed, 726 insertions(+), 732 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