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 2df8306 Fix #1182: fix quarkus versions new df0991c chore(trait): Remove environment classpath member new c2f3fa0 chore(trait): Configure classpath using container args new 4751f91 chore(trait): Default integration container command to 'java' new f4838b2 chore(trait): Add main class or JAR to integration container arguments new 9eddad3 chore(trait): Set integration container working directory new f91034f feat(dev): Use adoptopenjdk/openjdk8:slim as base image for the Camel K operator new 0a552c2 feat(dev): Use adoptopenjdk/openjdk8:slim as base image for integrations new 8cd7ff2 fix(build): Use Docker build strategy in S2I builds new 2836a5e chore(trait): Use container args to configure JVM debugging new cc67814 chore(trait): Use container args to configure Jolokia agent new 6889b5d chore(trait): Update Jolokia trait documentation new 19727c7 chore(it): Report generated resources in integration status new 4c5c963 chore(trait): Use container args to configure Prometheus agent The 13 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: build/Dockerfile | 16 +- deploy/prometheus-jmx-exporter.yaml | 586 +++++++++++++++++++++ deploy/resources.go | 673 ++++++++++++++++++++++-- docs/modules/ROOT/pages/traits/debug.adoc | 2 - docs/modules/ROOT/pages/traits/environment.adoc | 2 +- docs/modules/ROOT/pages/traits/jolokia.adoc | 6 +- docs/modules/ROOT/pages/traits/prometheus.adoc | 9 +- pkg/apis/camel/v1/integration_types.go | 33 +- pkg/apis/camel/v1/integration_types_support.go | 37 +- pkg/apis/camel/v1/zz_generated.deepcopy.go | 5 + pkg/builder/s2i/publisher.go | 22 +- pkg/trait/builder_test.go | 2 - pkg/trait/classpath.go | 52 +- pkg/trait/classpath_test.go | 75 +-- pkg/trait/container.go | 13 +- pkg/trait/container_test.go | 3 - pkg/trait/debug.go | 14 +- pkg/trait/debug_test.go | 29 +- pkg/trait/environment.go | 12 +- pkg/trait/environment_test.go | 4 - pkg/trait/jolokia.go | 95 ++-- pkg/trait/jolokia_test.go | 118 ++--- pkg/trait/knative_service_test.go | 4 - pkg/trait/knative_test.go | 3 - pkg/trait/prometheus.go | 87 ++- pkg/trait/prometheus_test.go | 26 +- pkg/trait/quarkus.go | 9 - pkg/trait/quarkus_test.go | 9 - pkg/trait/route_test.go | 2 - pkg/trait/service_test.go | 4 - pkg/trait/trait_catalog.go | 6 +- pkg/trait/trait_test.go | 2 - pkg/trait/trait_types.go | 26 +- pkg/util/defaults/defaults.go | 2 +- script/Makefile | 2 +- 35 files changed, 1546 insertions(+), 444 deletions(-) create mode 100644 deploy/prometheus-jmx-exporter.yaml