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 b16064e94 chore: nightly automatic updates
     new 1e0d4bd18 feat(ci): minikube usage
     new d5c298ee0 chore(e2e): upgrade test independent from install method
     new 573e993e6 fix(ci): OLM test refactoring
     new e6f63825b chore(ci): simplify OLM testing
     new db7148ca4 chore(ci): use operator-sdk to test OLM
     new d3efe3cab chore(ci): Helm CRDs refactoring
     new e039e22e0 chore(ci): move OLM test as nightly

The 7 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/actions/{e2e-build => build}/action.yml    |    20 +-
 .github/actions/e2e-common/action.yml              |    80 -
 .github/actions/e2e-common/exec-tests.sh           |   166 -
 .github/actions/e2e-install/action.yml             |    96 -
 .github/actions/e2e-install/exec-tests.sh          |   130 -
 .github/actions/e2e-knative/action.yml             |    73 -
 .github/actions/e2e-knative/exec-tests.sh          |   142 -
 .github/actions/e2e-native/action.yml              |    69 -
 .github/actions/e2e-native/exec-tests.sh           |   135 -
 .github/actions/e2e-telemetry/action.yml           |    76 -
 .github/actions/e2e-telemetry/exec-tests.sh        |   145 -
 .github/actions/infra-setting/action.yml           |    56 +
 .../action.yml                                     |     0
 .github/actions/kamel-build-binary/action.yml      |    56 -
 .github/actions/kamel-build-binary/build-binary.sh |   124 -
 .github/actions/kamel-build-bundle/action.yaml     |   101 -
 .../kamel-build-bundle/build-bundle-image.sh       |   137 -
 .../kamel-build-bundle/build-image-catalog.sh      |    94 -
 .../kamel-build-bundle/build-index-image.sh        |   262 -
 .github/actions/kamel-build/action.yml             |    82 -
 .../actions/kamel-config-cluster-custom/action.yml |   131 -
 .../kamel-config-cluster-custom/connect-cluster.sh |   144 -
 .../actions/kamel-config-cluster-kind/action.yml   |    75 -
 .../kamel-config-cluster-kind/extract-config.sh    |    53 -
 .github/actions/kamel-config-cluster/action.yaml   |   198 -
 .../actions/kamel-config-cluster/change-context.sh |    53 -
 .../actions/kamel-config-cluster/output-config.sh  |    93 -
 .github/actions/kamel-install-knative/action.yml   |    26 -
 .github/actions/kamel-prepare-env/action.yml       |   120 -
 .github/actions/release-nightly/action.yml         |     2 +-
 .github/workflows/build.yml                        |     2 +-
 .github/workflows/common.yml                       |    45 +-
 .github/workflows/install.yml                      |    17 +-
 .github/workflows/knative.yml                      |    24 +-
 .github/workflows/native.yml                       |    24 +-
 .github/workflows/nightly-install-olm.yml          |    78 +
 .github/workflows/nightly-latest-runtime.yml       |    21 +-
 .github/workflows/nightly-native-test.yml          |    56 -
 .github/workflows/nightly-release.yml              |     1 -
 .github/workflows/telemetry.yml                    |    23 +-
 e2e/install/helm/setup_test.go                     |    30 +-
 e2e/install/kustomize/setup_test.go                |    14 +-
 e2e/install/olm/olm_install_test.go                |    97 +-
 e2e/install/upgrade/olm_upgrade_test.go            |   251 -
 .../{kustomize_upgrade_test.go => upgrade_test.go} |   121 +-
 e2e/support/csv.go                                 |   120 -
 e2e/support/test_support.go                        |    11 -
 e2e/support/test_util.go                           |    19 +-
 helm/camel-k/crds/camel-k-crds.yaml                | 38387 +++++++++++++++++++
 helm/camel-k/crds/crd-build.yaml                   |  2075 -
 helm/camel-k/crds/crd-camel-catalog.yaml           |   544 -
 helm/camel-k/crds/crd-integration-kit.yaml         |   572 -
 helm/camel-k/crds/crd-integration-platform.yaml    |  4241 --
 helm/camel-k/crds/crd-integration-profile.yaml     |  3995 --
 helm/camel-k/crds/crd-integration.yaml             |  8318 ----
 helm/camel-k/crds/crd-kamelet-binding.yaml         |  8923 -----
 helm/camel-k/crds/crd-kamelet.yaml                 |  1386 -
 helm/camel-k/crds/crd-pipe.yaml                    |  8453 ----
 script/Makefile                                    |    20 +-
 script/gen_crd.sh                                  |     7 +-
 60 files changed, 38831 insertions(+), 41983 deletions(-)
 rename .github/actions/{e2e-build => build}/action.yml (84%)
 delete mode 100644 .github/actions/e2e-common/action.yml
 delete mode 100755 .github/actions/e2e-common/exec-tests.sh
 delete mode 100644 .github/actions/e2e-install/action.yml
 delete mode 100755 .github/actions/e2e-install/exec-tests.sh
 delete mode 100644 .github/actions/e2e-knative/action.yml
 delete mode 100755 .github/actions/e2e-knative/exec-tests.sh
 delete mode 100644 .github/actions/e2e-native/action.yml
 delete mode 100755 .github/actions/e2e-native/exec-tests.sh
 delete mode 100644 .github/actions/e2e-telemetry/action.yml
 delete mode 100755 .github/actions/e2e-telemetry/exec-tests.sh
 create mode 100644 .github/actions/infra-setting/action.yml
 rename .github/actions/{kamel-install-otlp-collector => 
install-otlp-collector}/action.yml (100%)
 delete mode 100644 .github/actions/kamel-build-binary/action.yml
 delete mode 100755 .github/actions/kamel-build-binary/build-binary.sh
 delete mode 100644 .github/actions/kamel-build-bundle/action.yaml
 delete mode 100755 .github/actions/kamel-build-bundle/build-bundle-image.sh
 delete mode 100755 .github/actions/kamel-build-bundle/build-image-catalog.sh
 delete mode 100755 .github/actions/kamel-build-bundle/build-index-image.sh
 delete mode 100644 .github/actions/kamel-build/action.yml
 delete mode 100644 .github/actions/kamel-config-cluster-custom/action.yml
 delete mode 100755 
.github/actions/kamel-config-cluster-custom/connect-cluster.sh
 delete mode 100644 .github/actions/kamel-config-cluster-kind/action.yml
 delete mode 100755 .github/actions/kamel-config-cluster-kind/extract-config.sh
 delete mode 100644 .github/actions/kamel-config-cluster/action.yaml
 delete mode 100755 .github/actions/kamel-config-cluster/change-context.sh
 delete mode 100755 .github/actions/kamel-config-cluster/output-config.sh
 delete mode 100644 .github/actions/kamel-install-knative/action.yml
 delete mode 100644 .github/actions/kamel-prepare-env/action.yml
 create mode 100644 .github/workflows/nightly-install-olm.yml
 delete mode 100644 .github/workflows/nightly-native-test.yml
 delete mode 100644 e2e/install/upgrade/olm_upgrade_test.go
 rename e2e/install/upgrade/{kustomize_upgrade_test.go => upgrade_test.go} (65%)
 create mode 100644 helm/camel-k/crds/camel-k-crds.yaml
 delete mode 100644 helm/camel-k/crds/crd-build.yaml
 delete mode 100644 helm/camel-k/crds/crd-camel-catalog.yaml
 delete mode 100644 helm/camel-k/crds/crd-integration-kit.yaml
 delete mode 100644 helm/camel-k/crds/crd-integration-platform.yaml
 delete mode 100644 helm/camel-k/crds/crd-integration-profile.yaml
 delete mode 100644 helm/camel-k/crds/crd-integration.yaml
 delete mode 100644 helm/camel-k/crds/crd-kamelet-binding.yaml
 delete mode 100644 helm/camel-k/crds/crd-kamelet.yaml
 delete mode 100644 helm/camel-k/crds/crd-pipe.yaml

Reply via email to