This is an automated email from the ASF dual-hosted git repository.
astefanutti pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git.
from 89f3a29 feat: Offer easier access to trait list
new e93f01c chore(trait): Rename Classpath trait to JVM trait
new b9f5fb8 chore: Fix IntegrationKit kind variable
new daedb24 chore(trait): Move JVM related configuration to the JVM trait
new ada13cc feat(JVM): Add a JVM options option to the JVM trait
new 387ae53 chore(trait): Merge Debug trait into the JVM trait
new c9ab8d2 feat(trait): Add options to configure JVM remote debugging
new 22fe728 feat(JVM): Max heap size heuristic based on container memory
limit
The 7 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.adoc | 3 +-
docs/modules/ROOT/pages/traits/classpath.adoc | 31 ------
.../ROOT/pages/traits/{quarkus.adoc => jvm.adoc} | 32 +++---
docs/modules/ROOT/pages/traits/traits.adoc | 3 +-
go.mod | 1 +
pkg/apis/camel/v1/integrationkit_types.go | 4 +-
pkg/apis/camel/v1/integrationkit_types_support.go | 4 +-
pkg/builder/builder_steps_test.go | 4 +-
pkg/controller/integration/util_test.go | 12 +--
pkg/install/common.go | 2 +-
pkg/trait/container.go | 7 +-
pkg/trait/debug.go | 58 -----------
pkg/trait/debug_test.go | 111 ---------------------
pkg/trait/{classpath.go => jvm.go} | 77 +++++++++++---
pkg/trait/{classpath_test.go => jvm_test.go} | 76 ++++++++++----
pkg/trait/trait_catalog.go | 18 ++--
pkg/trait/trait_test.go | 2 +-
17 files changed, 165 insertions(+), 280 deletions(-)
delete mode 100755 docs/modules/ROOT/pages/traits/classpath.adoc
copy docs/modules/ROOT/pages/traits/{quarkus.adoc => jvm.adoc} (51%)
delete mode 100644 pkg/trait/debug.go
delete mode 100644 pkg/trait/debug_test.go
rename pkg/trait/{classpath.go => jvm.go} (55%)
rename pkg/trait/{classpath_test.go => jvm_test.go} (70%)