This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to tag v2.9.0-nightly
in repository https://gitbox.apache.org/repos/asf/camel-k.git
*** WARNING: tag v2.9.0-nightly was modified! ***
from ac385ea3e (commit)
to 7b7373db3 (commit)
discard ac385ea3e chore(ci): v2.9.0-nightly release updates
add 4d7fd196c feat(ctrl): dry build - support Pipe BuildComplete phase
add e78e4cf58 fix(cmd): clarify deploy/undeploy support for Integrations
and Pipes
add 0e13fc0a9 fix(cmd): remove flag reference from deploy command
description
add 892f1e86d fix: Correct first-readiness metric for dry-build
integrations
add bf4406c2e chore: regenerate CRDs for DeploymentTimestamp field
add dfd4353e1 fix(e2e): add first-readiness metric test with
DeploymentTimestamp logic
add 0120ccdda refactor: consolidate getIntegrationKit into kubernetes
utility
add e72906e59 fix: revert to original check style per review feedback
add 9b52a9a0d style: add blank line before return statements (nlreturn)
add 1605d15e2 feat(traits): gitops trait
add f3b4842b5 chore: nightly automatic updates
new 7b7373db3 chore(ci): v2.9.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 (ac385ea3e)
\
N -- N -- N refs/tags/v2.9.0-nightly (7b7373db3)
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/charts/camel-k-2.9.0-nightly.tgz | Bin 271165 -> 275085 bytes
docs/charts/index.yaml | 6 +-
docs/modules/ROOT/nav.adoc | 4 +-
.../modules/ROOT/pages/running/build-from-git.adoc | 8 +-
docs/modules/ROOT/pages/running/gitops.adoc | 200 ++++++++
docs/modules/ROOT/pages/running/promoting.adoc | 18 +-
docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 119 +++++
docs/modules/traits/pages/gitops.adoc | 78 +++
e2e/advanced/operator_metrics_test.go | 5 +-
e2e/common/cli/deploy_test.go | 56 +++
e2e/common/{git => traits}/git_test.go | 2 +-
helm/camel-k/crds/camel-k-crds.yaml | 525 +++++++++++++++++++++
pkg/apis/camel/v1/common_types.go | 2 +
pkg/apis/camel/v1/integration_types.go | 2 +
pkg/apis/camel/v1/pipe_types.go | 2 +
pkg/apis/camel/v1/trait/gitops.go | 55 +++
pkg/apis/camel/v1/trait/zz_generated.deepcopy.go | 21 +
pkg/apis/camel/v1/zz_generated.deepcopy.go | 9 +
pkg/builder/git.go | 70 +--
.../camel/v1/integrationstatus.go | 9 +
.../camel/applyconfiguration/camel/v1/traits.go | 9 +
pkg/cmd/deploy.go | 13 +-
pkg/cmd/deploy_test.go | 4 +-
pkg/cmd/promote.go | 389 +--------------
pkg/cmd/undeploy.go | 8 +-
pkg/cmd/undeploy_test.go | 2 +-
pkg/controller/integration/build.go | 2 +
pkg/controller/integration/build_kit.go | 5 +
pkg/controller/integration/initialize.go | 2 +
.../integration/integration_controller.go | 7 +-
.../integration/integration_controller_test.go | 204 ++++++++
pkg/controller/pipe/monitor.go | 13 +-
pkg/controller/pipe/monitor_test.go | 44 ++
.../camel.apache.org_integrationplatforms.yaml | 130 +++++
.../camel.apache.org_integrationprofiles.yaml | 130 +++++
.../crd/bases/camel.apache.org_integrations.yaml | 135 ++++++
.../config/crd/bases/camel.apache.org_pipes.yaml | 130 +++++
.../bases/camel-k.clusterserviceversion.yaml | 2 +-
pkg/trait/git_test.go | 95 ++++
pkg/trait/gitops.go | 208 ++++++++
pkg/trait/gitops_test.go | 181 +++++++
pkg/trait/jvm.go | 7 +-
pkg/trait/trait_register.go | 1 +
pkg/trait/trait_types.go | 12 +-
pkg/trait/util.go | 7 +-
pkg/{cmd/promote.go => util/gitops/gitops.go} | 436 +++++++----------
47 files changed, 2592 insertions(+), 777 deletions(-)
create mode 100644 docs/modules/ROOT/pages/running/gitops.adoc
create mode 100644 docs/modules/traits/pages/gitops.adoc
rename e2e/common/{git => traits}/git_test.go (97%)
create mode 100644 pkg/apis/camel/v1/trait/gitops.go
create mode 100644 pkg/controller/integration/integration_controller_test.go
create mode 100644 pkg/trait/git_test.go
create mode 100644 pkg/trait/gitops.go
create mode 100644 pkg/trait/gitops_test.go
copy pkg/{cmd/promote.go => util/gitops/gitops.go} (53%)