This is an automated email from the ASF dual-hosted git repository.
astefanutti pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git.
from b41d424 Updated CHANGELOG.md
new eeab78c Add podTrait to specify customPodTemplateSpec close #1657
new bd0a199 Make integration podspec-able reflect changes in the pod
trait Add e2e tests to cover pod template with deployment and knative strategy
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:
.../crd/bases/camel.apache.org_integrations.yaml | 5133 +++++++++++++++++++
.../bases/camel.apache.org_kameletbindings.yaml | 5388 ++++++++++++++++++++
.../camel.apache.org_integrations.yaml | 5133 +++++++++++++++++++
.../camel.apache.org_kameletbindings.yaml | 5388 ++++++++++++++++++++
deploy/traits.yaml | 14 +-
.../attachments/schema/integration-schema.json | 4528 ++++++++++++++++
docs/modules/ROOT/nav.adoc | 1 +
docs/modules/traits/pages/gc.adoc | 2 +-
docs/modules/traits/pages/pod.adoc | 93 +
.../common/traits/files/PodTest.groovy | 8 +-
e2e/common/traits/files/template.yaml | 19 +
e2e/common/traits/{istio_test.go => pod_test.go} | 50 +-
.../{knativech1.groovy => podtest-knative1.groovy} | 5 +-
.../files/podtest-knative2.groovy} | 4 +-
e2e/knative/files/template-knative.yaml | 5 +
.../kotlin_test.go => knative/pod_test.go} | 31 +-
go.sum | 3 +
helm/camel-k/crds/crd-integration.yaml | 5133 +++++++++++++++++++
helm/camel-k/crds/crd-kamelet-binding.yaml | 5388 ++++++++++++++++++++
pkg/apis/camel/v1/integration_types.go | 27 +
pkg/apis/camel/v1/zz_generated.deepcopy.go | 88 +
pkg/cmd/run.go | 39 +
pkg/cmd/run_test.go | 36 +
pkg/install/cluster.go | 22 +
pkg/resources/resources.go | 14 +-
pkg/trait/pod.go | 123 +
pkg/trait/pod_test.go | 155 +
pkg/trait/trait_register.go | 1 +
28 files changed, 36777 insertions(+), 54 deletions(-)
create mode 100755 docs/modules/traits/pages/pod.adoc
copy examples/knative/reader.groovy => e2e/common/traits/files/PodTest.groovy
(87%)
create mode 100644 e2e/common/traits/files/template.yaml
copy e2e/common/traits/{istio_test.go => pod_test.go} (51%)
copy e2e/knative/files/{knativech1.groovy => podtest-knative1.groovy} (89%)
copy e2e/{common/files/RestProducer.groovy =>
knative/files/podtest-knative2.groovy} (90%)
create mode 100644 e2e/knative/files/template-knative.yaml
copy e2e/{common/languages/kotlin_test.go => knative/pod_test.go} (56%)
create mode 100644 pkg/trait/pod.go
create mode 100755 pkg/trait/pod_test.go