This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to tag v2.10.0-nightly
in repository https://gitbox.apache.org/repos/asf/camel-k.git
*** WARNING: tag v2.10.0-nightly was modified! ***
from 3aafe8ebe (commit)
to 8f80623b8 (commit)
discard 3aafe8ebe chore(ci): v2.10.0-nightly release updates
add 4f20448fc chore(deps): bump
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring
add 4d75a88f1 chore: nightly automatic updates
add 7f72d844d chore: nightly automatic updates
add a1d857981 fix(cmd): proper version deprecation notice
add 82ad8b1a9 doc: move IntegrationProfile documentation
add 3a491c44b feat(trait): gateway
add fa1e9e823 fix(ci): use versioned allowed release actions
add 220ae8c26 fix(ci): used pinned actions
new 8f80623b8 chore(ci): v2.10.0-nightly release updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
tag are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (3aafe8ebe)
\
N -- N -- N refs/tags/v2.10.0-nightly (8f80623b8)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 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/infra-setting/action.yml | 2 +-
.github/actions/release-nightly/action.yml | 4 +-
.github/workflows/{knative.yml => gateway.yml} | 24 ++-
docs/antora.yml | 4 +-
docs/charts/camel-k-2.10.0-nightly.tgz | Bin 279424 -> 279698 bytes
docs/charts/index.yaml | 6 +-
docs/modules/ROOT/nav.adoc | 1 +
.../pages/configuration/integrationprofiles.adoc | 42 +++++
.../ROOT/pages/installation/advanced/multi.adoc | 35 ----
docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 46 ++++-
.../files/PlatformHttpServer.java | 0
e2e/gateway/gateway_test.go | 74 ++++++++
.../gateway/setup/gateway.yaml | 9 +-
.../gateway/setup/setup.sh | 16 +-
e2e/support/test_support.go | 50 ++++-
go.mod | 23 +--
go.sum | 48 ++---
helm/camel-k/crds/camel-k-crds.yaml | 165 +++++++++++++++--
...toscheme_camel_v1.go => addtoscheme_gateway.go} | 4 +-
pkg/apis/camel/v1/common_types.go | 4 +
pkg/apis/camel/v1/common_types_support.go | 2 +
pkg/apis/camel/v1/integration_types.go | 4 +
pkg/apis/camel/v1/integrationprofile_types.go | 6 +-
.../v1/trait/{service_binding.go => gateway.go} | 20 +-
pkg/apis/camel/v1/trait/zz_generated.deepcopy.go | 16 ++
pkg/apis/camel/v1/zz_generated.deepcopy.go | 5 +
.../camel/v1/integrationplatformkameletspec.go | 1 -
.../camel/v1/integrationprofilekameletspec.go | 1 +
.../camel/v1/integrationprofilespec.go | 1 +
.../camel/applyconfiguration/camel/v1/podspec.go | 1 +
.../applyconfiguration/camel/v1/podspectemplate.go | 1 +
.../camel/applyconfiguration/camel/v1/traits.go | 10 +
pkg/client/client.go | 3 +-
pkg/cmd/run.go | 1 +
pkg/cmd/version.go | 1 +
pkg/controller/integration/monitor.go | 2 +
pkg/controller/integrationkit/build.go | 1 +
pkg/controller/pipe/monitor.go | 1 +
pkg/platform/operator.go | 1 +
pkg/platform/profile.go | 1 +
pkg/platform/profile_test.go | 3 +-
.../camel.apache.org_integrationplatforms.yaml | 36 ++++
.../camel.apache.org_integrationprofiles.yaml | 57 ++++--
.../crd/bases/camel.apache.org_integrations.yaml | 36 ++++
.../config/crd/bases/camel.apache.org_pipes.yaml | 36 ++++
.../bases/camel-k.clusterserviceversion.yaml | 2 +-
.../rbac/descoped/operator-cluster-role.yaml | 12 ++
.../config/rbac/namespaced/operator-role.yaml | 12 ++
pkg/trait/gateway.go | 205 +++++++++++++++++++++
pkg/trait/gateway_test.go | 162 ++++++++++++++++
pkg/trait/pod.go | 1 +
pkg/trait/quarkus.go | 1 +
pkg/trait/trait_register.go | 1 +
pkg/util/digest/digest.go | 1 +
script/Makefile | 8 +-
55 files changed, 1059 insertions(+), 150 deletions(-)
copy .github/workflows/{knative.yml => gateway.yml} (82%)
create mode 100644
docs/modules/ROOT/pages/configuration/integrationprofiles.adoc
copy e2e/{common/traits => gateway}/files/PlatformHttpServer.java (100%)
create mode 100644 e2e/gateway/gateway_test.go
copy pkg/resources/config/samples/bases/camel_v1_integrationplatform.yaml =>
e2e/gateway/setup/gateway.yaml (87%)
copy script/update_default_camel.sh => e2e/gateway/setup/setup.sh (64%)
copy pkg/apis/{addtoscheme_camel_v1.go => addtoscheme_gateway.go} (89%)
copy pkg/apis/camel/v1/trait/{service_binding.go => gateway.go} (53%)
create mode 100644 pkg/trait/gateway.go
create mode 100644 pkg/trait/gateway_test.go