This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to tag v2.8.0-nightly
in repository https://gitbox.apache.org/repos/asf/camel-k.git
*** WARNING: tag v2.8.0-nightly was modified! ***
from 97b69c6fb (commit)
to b141044f4 (commit)
discard 97b69c6fb chore(ci): v2.8.0-nightly release updates
add ed390df1e feat(trait): init containers
add 7564d37d9 feat(dependencies): kube api 0.33.4
add 1798467fd fix(e2e): check succeeded pods instead of running pods
add 3913d91cf feat(dependencies): removed spectrum strategy
add 2c016c60f chore: nightly automatic updates
new b141044f4 chore(ci): v2.8.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 (97b69c6fb)
\
N -- N -- N refs/tags/v2.8.0-nightly (b141044f4)
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:
README.adoc | 2 +-
docs/antora.yml | 2 +-
docs/charts/camel-k-2.8.0-nightly.tgz | Bin 239050 -> 239991 bytes
docs/charts/index.yaml | 6 +-
docs/modules/ROOT/nav.adoc | 1 +
docs/modules/ROOT/pages/pipeline/pipeline.adoc | 2 +-
docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 181 ++++++++-----
docs/modules/traits/pages/init-containers.adoc | 76 ++++++
e2e/common/traits/cron_test.go | 32 +--
e2e/common/traits/files/cron-fallback.yaml | 2 +
.../files/init-container.yaml} | 11 +-
.../{camel_test.go => init_container_test.go} | 46 ++--
e2e/support/test_support.go | 48 ++++
go.mod | 29 +-
go.sum | 60 ++---
helm/camel-k/crds/camel-k-crds.yaml | 294 +++++++++++++++++++--
pkg/apis/camel/v1/build_types.go | 1 +
pkg/apis/camel/v1/build_types_support.go | 3 -
pkg/apis/camel/v1/common_types.go | 2 +
pkg/apis/camel/v1/integrationplatform_types.go | 5 -
.../trait/{dependencies.go => init_containers.go} | 14 +-
pkg/apis/camel/v1/trait/zz_generated.deepcopy.go | 31 +++
pkg/apis/camel/v1/zz_generated.deepcopy.go | 5 +
pkg/builder/builder_test.go | 32 ---
pkg/builder/spectrum.go | 151 -----------
pkg/builder/tasks.go | 12 -
.../camel/applyconfiguration/camel/v1/traits.go | 9 +
pkg/controller/build/build_pod.go | 2 -
pkg/controller/build/monitor_pod.go | 4 +-
pkg/controller/build/monitor_routine.go | 6 -
.../camel.apache.org_integrationplatforms.yaml | 56 ++++
.../camel.apache.org_integrationprofiles.yaml | 56 ++++
.../crd/bases/camel.apache.org_integrations.yaml | 102 ++++++-
.../config/crd/bases/camel.apache.org_pipes.yaml | 80 ++++--
.../bases/camel-k.clusterserviceversion.yaml | 2 +-
pkg/trait/builder.go | 22 --
pkg/trait/builder_test.go | 17 +-
pkg/trait/init_containers.go | 146 ++++++++++
pkg/trait/init_containers_test.go | 287 ++++++++++++++++++++
pkg/trait/mount.go | 24 +-
pkg/trait/mount_test.go | 34 +++
pkg/trait/trait_register.go | 1 +
pkg/trait/trait_test.go | 2 +-
script/gen_crd/gen-crd-api-config.json | 2 +-
script/gen_crd/gen-kamelets-crd-api-config.json | 2 +-
45 files changed, 1426 insertions(+), 476 deletions(-)
create mode 100644 docs/modules/traits/pages/init-containers.adoc
copy e2e/common/{binding/hello.yaml => traits/files/init-container.yaml} (84%)
copy e2e/common/traits/{camel_test.go => init_container_test.go} (50%)
copy pkg/apis/camel/v1/trait/{dependencies.go => init_containers.go} (57%)
delete mode 100644 pkg/builder/spectrum.go
create mode 100644 pkg/trait/init_containers.go
create mode 100644 pkg/trait/init_containers_test.go