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 c8c513a86 fix(gc): Prevent false negative in dry-build detection with
replicas=0
new c1783f43e feat(jvm): add caCert option for trusted root certificates
new 4e4527a69 refactor(jvm): move CA cert volumes and init container to
mount/init-containers traits
new fdec425fb fix(mount): propagate config and resource mounts to init
containers
new 8143b8a65 fix(jvm): secure JVM truststore password handling via secret
reference
The 4 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/partials/apis/camel-k-crds.adoc | 16 +++
docs/modules/traits/pages/jvm.adoc | 59 +++++++++
e2e/common/traits/init_container_test.go | 31 +++++
e2e/common/traits/jvm_test.go | 72 ++++++++++
helm/camel-k/crds/camel-k-crds.yaml | 128 ++++++++++++++++++
pkg/apis/camel/v1/trait/jvm.go | 10 ++
pkg/apis/camel/v1/trait/zz_generated.deepcopy.go | 2 +-
pkg/apis/camel/v1/zz_generated.deepcopy.go | 1 +
.../duck/keda/v1alpha1/zz_generated.deepcopy.go | 2 +-
.../camel.apache.org_integrationplatforms.yaml | 32 +++++
.../camel.apache.org_integrationprofiles.yaml | 32 +++++
.../crd/bases/camel.apache.org_integrations.yaml | 32 +++++
.../config/crd/bases/camel.apache.org_pipes.yaml | 32 +++++
pkg/trait/init_containers.go | 29 ++++
pkg/trait/init_containers_test.go | 69 ++++++++++
pkg/trait/jvm.go | 37 ++++++
pkg/trait/jvm_cacert.go | 103 +++++++++++++++
pkg/trait/jvm_test.go | 147 +++++++++++++++++++++
pkg/trait/mount.go | 61 ++++++++-
pkg/trait/mount_test.go | 85 +++++++++++-
20 files changed, 974 insertions(+), 6 deletions(-)
create mode 100644 pkg/trait/jvm_cacert.go