This is an automated email from the ASF dual-hosted git repository.
nferraro pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git.
from 5964887 chore(dev): add .editorconfig
new 05fb571 Fix #2687: allow multiple secondary platforms on the same
namespace
new ba9623b Fix #2687: select platform based on annotations
new 23f92a0 Fix #2687: cascade platform to resources
new 59466e1 Fix #2687: use annotations for both operator and platform
new 5927f54 Fix #2687: disallow namespaced names for platform
new 977081a Fix #2687: align with latest main
new 3a50603 Fix #2687: add e2e tests
new 6434548 Fix #2687: add documentation for multiple operators and
platforms
new eb4e32e Fix #2687: fix profile on slow platform reconciliation
The 9 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:
docs/modules/ROOT/nav-end.adoc | 1 +
docs/modules/ROOT/pages/architecture/advanced.adoc | 76 +++++++++++++++++++
docs/modules/traits/pages/cron.adoc | 11 +++
e2e/common/secondary_platform_test.go | 74 +++++++++++++++++++
e2e/support/test_support.go | 71 +++++++++++++++---
pkg/apis/camel/v1/common_types.go | 5 +-
pkg/builder/builder.go | 2 +-
pkg/builder/image.go | 8 +-
pkg/cmd/run.go | 19 +++++
pkg/controller/integration/initialize.go | 2 +-
.../integration/integration_controller.go | 3 +-
pkg/controller/integration/kits.go | 2 +-
pkg/controller/integration/platform_setup.go | 6 +-
pkg/controller/integrationkit/build.go | 15 +++-
.../integrationkit/integrationkit_controller.go | 2 +-
pkg/controller/integrationplatform/create.go | 3 +-
pkg/controller/integrationplatform/initialize.go | 10 ++-
pkg/controller/kameletbinding/common.go | 2 +-
pkg/platform/operator.go | 4 +-
pkg/platform/platform.go | 85 ++++++++++++++++++----
pkg/trait/builder.go | 1 +
pkg/trait/container.go | 8 +-
pkg/trait/platform.go | 2 +-
pkg/trait/quarkus.go | 8 +-
pkg/trait/trait.go | 9 ++-
25 files changed, 376 insertions(+), 53 deletions(-)
create mode 100644 docs/modules/ROOT/pages/architecture/advanced.adoc
create mode 100644 e2e/common/secondary_platform_test.go