This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
from eddca6be0 chore(deps): bump github.com/spf13/viper from 1.14.0 to 1.15.0 new 99b0d040a feat: Render error message condition as json/structured message #3967 new 39abbab67 feat: Render error message condition as json/structured message (applyconfig) #3967 new 935cb3aec chore(test): improve maven log test new c9776e11e chore(test): improve knative kamelet binding test new 6ce7c07c4 chore(test): improve locale e2e tests new 839773e13 feat: use eclipse-temurin:11 as runtime base image new 20ef910da workaround: force eclipse-temurin:11 as runtime base image for upgrade tests new 30a82e583 feat: use eclipse temurin as java distribution for github actions The 8 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/kamel-prepare-env/action.yml | 5 +- .../duck/client/internalclientset/fake/register.go | 14 +- .../client/internalclientset/scheme/register.go | 14 +- .../crd/bases/camel.apache.org_integrations.yaml | 60 ++++++ .../bases/camel.apache.org_kameletbindings.yaml | 60 ++++++ docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 123 +++++++++++ docs/modules/ROOT/partials/apis/kamelets-crds.adoc | 7 + e2e/global/common/kamelet_binding_test.go | 23 +-- e2e/global/common/traits/health_test.go | 229 +++++++++++++++++++-- e2e/global/knative/kamelet_test.go | 22 +- e2e/local/local_build_test.go | 68 ++---- e2e/local/local_inspect_test.go | 20 +- e2e/local/local_run_test.go | 33 ++- e2e/namespace/upgrade/cli_upgrade_test.go | 4 +- e2e/namespace/upgrade/olm_upgrade_test.go | 1 + e2e/support/test_support.go | 80 ++++++- e2e/support/util/log_scanner.go | 5 + helm/camel-k/crds/crd-integration.yaml | 60 ++++++ helm/camel-k/crds/crd-kamelet-binding.yaml | 60 ++++++ .../v1/addontrait.go => apis/camel/v1/health.go} | 24 +-- pkg/apis/camel/v1/integration_types.go | 8 + pkg/apis/camel/v1/zz_generated.deepcopy.go | 72 +++++++ pkg/apis/camel/v1alpha1/kamelet_binding_types.go | 2 + pkg/apis/camel/v1alpha1/zz_generated.deepcopy.go | 7 + .../v1/{s2itask.go => healthcheckresponse.go} | 38 ++-- .../camel/v1/integrationcondition.go | 28 ++- .../applyconfiguration/camel/v1/podcondition.go | 67 ++++++ .../camel/v1alpha1/kameletbindingcondition.go | 27 ++- pkg/client/camel/applyconfiguration/utils.go | 4 + .../camel/clientset/versioned/fake/register.go | 14 +- .../camel/clientset/versioned/scheme/register.go | 14 +- pkg/controller/integration/health.go | 26 +-- pkg/controller/integration/health_test.go | 27 ++- pkg/controller/integration/monitor.go | 106 ++++++++-- pkg/controller/kameletbinding/monitor.go | 43 ++-- pkg/resources/resources.go | 8 +- pkg/util/defaults/defaults.go | 2 +- pkg/util/maven/maven_log_test.go | 8 +- script/Makefile | 5 +- script/gen_client.sh | 1 - script/gen_client_strimzi.sh | 1 - 41 files changed, 1144 insertions(+), 276 deletions(-) copy pkg/{client/camel/applyconfiguration/camel/v1/addontrait.go => apis/camel/v1/health.go} (57%) copy pkg/client/camel/applyconfiguration/camel/v1/{s2itask.go => healthcheckresponse.go} (50%) create mode 100644 pkg/client/camel/applyconfiguration/camel/v1/podcondition.go