This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
from 1ff6dc408 chore: changelog automatic update
new 76ad0fdc5 fix: Limit parallel builds on operator
new 6c24a8068 chore: Add E2E test on max running builds limit
new 707fbed5c chore: Fix flaky non-olm install E2E tests
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:
config/crd/bases/camel.apache.org_builds.yaml | 5 +
.../camel.apache.org_integrationplatforms.yaml | 10 +
docs/modules/ROOT/pages/architecture/cr/build.adoc | 31 +++
docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 14 ++
e2e/builder/build_test.go | 161 +++++++++++---
e2e/install/cli/global_test.go | 2 +-
e2e/install/cli/install_test.go | 2 +-
e2e/support/test_support.go | 14 +-
helm/camel-k/crds/crd-build.yaml | 5 +
helm/camel-k/crds/crd-integration-platform.yaml | 10 +
pkg/apis/camel/v1/build_types.go | 2 +
pkg/apis/camel/v1/integrationplatform_types.go | 2 +
.../camel/applyconfiguration/camel/v1/buildspec.go | 9 +
.../camel/v1/integrationplatformbuildspec.go | 9 +
pkg/cmd/install.go | 5 +
pkg/cmd/kit_create.go | 8 +
pkg/controller/build/build_controller.go | 8 +-
pkg/controller/build/build_monitor.go | 107 +++++++++
pkg/controller/build/build_monitor_test.go | 242 +++++++++++++++++++++
pkg/controller/build/monitor_pod.go | 11 +
pkg/controller/build/monitor_routine.go | 7 +
pkg/controller/build/schedule.go | 54 +----
pkg/controller/integrationkit/build.go | 1 +
pkg/platform/defaults.go | 8 +
pkg/resources/resources.go | 8 +-
25 files changed, 653 insertions(+), 82 deletions(-)
create mode 100644 pkg/controller/build/build_monitor.go
create mode 100644 pkg/controller/build/build_monitor_test.go