This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
from 44a48f56d fix(doc): more 404 links new 21d498705 feat(api): store executed traits in status new 050b17c82 feat: promote with traits The 2 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: addons/master/master.go | 82 +- addons/master/master_test.go | 78 + addons/resume/resume.go | 50 +- docs/modules/ROOT/pages/pipes/promoting.adoc | 13 + docs/modules/ROOT/pages/running/promoting.adoc | 12 + docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 8 + docs/modules/traits/pages/resume.adoc | 1 + helm/camel-k/crds/camel-k-crds.yaml | 1693 ++++++++++++++++++++ pkg/apis/camel/v1/integration_types.go | 2 + pkg/apis/camel/v1/pipe_types_support.go | 36 + pkg/apis/camel/v1/pipe_types_support_test.go | 45 + pkg/apis/camel/v1/zz_generated.deepcopy.go | 5 + .../camel/v1/integrationstatus.go | 9 + pkg/cmd/promote.go | 51 +- pkg/cmd/promote_test.go | 91 ++ .../crd/bases/camel.apache.org_integrations.yaml | 1693 ++++++++++++++++++++ pkg/trait/affinity.go | 4 - pkg/trait/builder_test.go | 9 +- pkg/trait/camel.go | 10 +- pkg/trait/container.go | 147 +- pkg/trait/container_probes_test.go | 12 +- pkg/trait/container_test.go | 34 +- pkg/trait/cron.go | 29 +- pkg/trait/cron_test.go | 87 +- pkg/trait/environment.go | 3 - pkg/trait/environment_test.go | 15 +- pkg/trait/health.go | 35 +- pkg/trait/health_test.go | 4 +- pkg/trait/ingress.go | 34 +- pkg/trait/ingress_test.go | 2 +- pkg/trait/istio.go | 17 +- pkg/trait/istio_test.go | 12 +- pkg/trait/jolokia.go | 15 +- pkg/trait/jolokia_test.go | 5 +- pkg/trait/jvm.go | 4 +- pkg/trait/kamelets.go | 15 +- pkg/trait/kamelets_test.go | 53 + pkg/trait/knative.go | 72 +- pkg/trait/knative_service.go | 28 +- pkg/trait/knative_service_test.go | 86 +- pkg/trait/knative_test.go | 83 +- pkg/trait/logging.go | 23 +- pkg/trait/logging_test.go | 9 +- pkg/trait/mount_test.go | 12 +- pkg/trait/platform.go | 29 +- pkg/trait/prometheus.go | 5 +- pkg/trait/route.go | 3 - pkg/trait/route_test.go | 36 +- pkg/trait/security_context.go | 28 +- pkg/trait/security_context_test.go | 15 +- pkg/trait/service.go | 3 +- pkg/trait/service_test.go | 82 +- pkg/trait/trait.go | 16 +- pkg/trait/trait_catalog.go | 65 +- pkg/trait/trait_catalog_test.go | 89 + pkg/trait/trait_test.go | 204 ++- pkg/trait/trait_types.go | 7 +- pkg/trait/trait_types_test.go | 6 +- pkg/trait/util.go | 4 - 59 files changed, 4924 insertions(+), 396 deletions(-) create mode 100644 pkg/trait/trait_catalog_test.go