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 6f6c17b70 feat(ci): bring back Quarkus native execution on PR and 
pushes
     new e117f51ad fix(install): simplify kustomize procedure
     new ad79a4635 doc: kustomize
     new 31fe95d9a chore(install): openshift overlays

The 3 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:
 .github/workflows/install.yml                      |   4 +-
 docs/modules/ROOT/nav.adoc                         |   3 +-
 .../pages/installation/advanced/kustomize.adoc     | 100 -----
 .../ROOT/pages/installation/installation.adoc      | 103 ++---
 .../ROOT/pages/installation/uninstalling.adoc      |  62 ++-
 docs/modules/ROOT/pages/installation/upgrade.adoc  |  37 +-
 e2e/install/helm/setup_test.go                     |  12 +-
 e2e/install/kustomize/operator_test.go             | 171 --------
 e2e/install/kustomize/setup_test.go                | 248 +++++++++--
 e2e/install/kustomize/uninstall_test.go            | 126 ------
 e2e/install/upgrade/cli_upgrade_test.go            |   3 -
 e2e/install/upgrade/kustomize_upgrade_test.go      | 157 +++++++
 e2e/support/test_util.go                           |  11 +
 install/Makefile                                   | 465 ---------------------
 install/base/config                                |   1 +
 install/{setup => base}/kustomization.yaml         |   4 +-
 install/config                                     |   1 -
 install/operator/kustomization.yaml                |  50 ---
 .../kubernetes/descoped}/kustomization.yaml        |  15 +-
 .../descoped}/patch-watch-namespace-global.yaml    |   2 +-
 .../kubernetes/namespaced}/kustomization.yaml      |  22 +-
 .../patch-install-default-kamelets.yaml            |   0
 .../kubernetes/namespaced}/patch-log-level.yaml    |   0
 .../namespaced}/patch-node-selector.yaml           |   0
 .../kubernetes/namespaced}/patch-ports.yaml        |   0
 .../namespaced}/patch-resource-requirements.yaml   |   0
 .../kubernetes/namespaced}/patch-toleration.yaml   |   0
 .../openshift/descoped}/kustomization.yaml         |   7 +-
 .../descoped}/patch-watch-namespace-global.yaml    |   2 +-
 .../openshift/namespaced}/kustomization.yaml       |   6 +-
 .../overlays/platform/integration-platform.yaml    |  18 +-
 .../platform}/kustomization.yaml                   |   2 +-
 install/script/Makefile                            |   1 -
 install/script/check_crd_api_support.sh            |   1 -
 install/script/check_platform.sh                   |   1 -
 install/script/help.sh                             |  30 --
 pkg/resources/config/manager/kustomization.yaml    |   9 -
 .../bases/camel-k.clusterserviceversion.yaml       |   1 -
 pkg/resources/config/manifests/kustomization.yaml  |   1 -
 .../config/manifests/patch-delete-pvc.yaml         |  28 --
 .../operator-cluster-role-binding-events.yaml      |   1 -
 .../operator-cluster-role-binding-keda.yaml        |   1 -
 .../operator-cluster-role-binding-knative.yaml     |   1 -
 .../operator-cluster-role-binding-leases.yaml      |   1 -
 .../operator-cluster-role-binding-podmonitors.yaml |   1 -
 .../operator-cluster-role-binding-strimzi.yaml     |   1 -
 .../descoped/operator-cluster-role-binding.yaml    |   1 -
 .../operator-cluster-role-binding-openshift.yaml   |   1 -
 ...tor-cluster-role-console-binding-openshift.yaml |   1 -
 ...-cluster-role-binding-addressable-resolver.yaml |   1 -
 ...r-role-binding-custom-resource-definitions.yaml |   1 -
 .../rbac/operator-role-binding-local-registry.yaml |   1 -
 .../patch-rolebinding-to-clusterrolebinding.yaml   |   1 -
 53 files changed, 566 insertions(+), 1151 deletions(-)
 delete mode 100644 docs/modules/ROOT/pages/installation/advanced/kustomize.adoc
 delete mode 100644 e2e/install/kustomize/operator_test.go
 delete mode 100644 e2e/install/kustomize/uninstall_test.go
 create mode 100644 e2e/install/upgrade/kustomize_upgrade_test.go
 delete mode 100644 install/Makefile
 create mode 120000 install/base/config
 rename install/{setup => base}/kustomization.yaml (96%)
 delete mode 120000 install/config
 delete mode 100644 install/operator/kustomization.yaml
 copy {pkg/resources/config/rbac/openshift/namespaced => 
install/overlays/kubernetes/descoped}/kustomization.yaml (86%)
 copy {pkg/resources/config/manager => 
install/overlays/kubernetes/descoped}/patch-watch-namespace-global.yaml (98%)
 rename install/{platform => overlays/kubernetes/namespaced}/kustomization.yaml 
(74%)
 rename {pkg/resources/config/manager => 
install/overlays/kubernetes/namespaced}/patch-install-default-kamelets.yaml 
(100%)
 rename {pkg/resources/config/manager => 
install/overlays/kubernetes/namespaced}/patch-log-level.yaml (100%)
 rename {pkg/resources/config/manager => 
install/overlays/kubernetes/namespaced}/patch-node-selector.yaml (100%)
 rename {pkg/resources/config/manager => 
install/overlays/kubernetes/namespaced}/patch-ports.yaml (100%)
 rename {pkg/resources/config/manager => 
install/overlays/kubernetes/namespaced}/patch-resource-requirements.yaml (100%)
 rename {pkg/resources/config/manager => 
install/overlays/kubernetes/namespaced}/patch-toleration.yaml (100%)
 rename install/{setup-cluster => 
overlays/openshift/descoped}/kustomization.yaml (88%)
 rename {pkg/resources/config/manager => 
install/overlays/openshift/descoped}/patch-watch-namespace-global.yaml (98%)
 copy install/{example => overlays/openshift/namespaced}/kustomization.yaml 
(88%)
 copy helm/camel-k/templates/platform.yaml => 
install/overlays/platform/integration-platform.yaml (61%)
 rename install/{example => overlays/platform}/kustomization.yaml (95%)
 delete mode 120000 install/script/Makefile
 delete mode 120000 install/script/check_crd_api_support.sh
 delete mode 120000 install/script/check_platform.sh
 delete mode 100755 install/script/help.sh
 delete mode 100644 pkg/resources/config/manifests/patch-delete-pvc.yaml

Reply via email to