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 93301807d chore(deps): ignore only k8s dependencies
new 68edf572d feat(api): create BuildConfiguration to host config
new 161fe9eec chore: default build strategy
new 1fd3723fd chore(api): not required build strategy
new 91df85c10 feat(trait): builder pod resources config
new 123ffb1fc chore(e2e): builder resources test
new d52a50f39 chore(e2e): let default memory for builder test
new 0cdd6a0cf chore(e2e): move memory limit to builder pod
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:
.../duck/client/internalclientset/fake/register.go | 14 +--
.../client/internalclientset/scheme/register.go | 14 +--
config/crd/bases/camel.apache.org_builds.yaml | 33 +++++--
.../bases/camel.apache.org_integrationkits.yaml | 16 ++++
.../camel.apache.org_integrationplatforms.yaml | 104 +++++++++++++++++----
.../crd/bases/camel.apache.org_integrations.yaml | 16 ++++
.../bases/camel.apache.org_kameletbindings.yaml | 16 ++++
config/crd/bases/camel.apache.org_pipes.yaml | 16 ++++
.../bases/camel_v1_integrationplatform.yaml | 3 +
docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 101 ++++++++++++++++++--
docs/modules/traits/pages/builder.adoc | 16 ++++
e2e/builder/build_test.go | 25 ++---
e2e/common/traits/builder_test.go | 43 +++++++++
e2e/commonwithcustominstall/local_platform_test.go | 2 +-
e2e/native/native_binding_test.go | 2 +-
e2e/native/native_test.go | 5 +-
e2e/native/native_with_sources_test.go | 6 +-
e2e/support/test_support.go | 10 ++
helm/camel-k/crds/crd-build.yaml | 33 +++++--
helm/camel-k/crds/crd-integration-kit.yaml | 16 ++++
helm/camel-k/crds/crd-integration-platform.yaml | 104 +++++++++++++++++----
helm/camel-k/crds/crd-integration.yaml | 16 ++++
helm/camel-k/crds/crd-kamelet-binding.yaml | 16 ++++
helm/camel-k/crds/crd-pipe.yaml | 16 ++++
pkg/apis/camel/v1/build_types.go | 4 +-
pkg/apis/camel/v1/common_types.go | 17 +++-
pkg/apis/camel/v1/common_types_support.go | 9 ++
pkg/apis/camel/v1/integrationplatform_types.go | 6 +-
pkg/apis/camel/v1/trait/builder.go | 8 ++
pkg/apis/camel/v1/zz_generated.deepcopy.go | 17 ++++
.../camel/v1/buildconfiguration.go | 80 ++++++++++++++++
.../camel/applyconfiguration/camel/v1/buildspec.go | 21 ++---
.../camel/v1/integrationplatformbuildspec.go | 36 +++----
pkg/client/camel/applyconfiguration/utils.go | 2 +
.../camel/clientset/versioned/fake/register.go | 14 +--
.../camel/clientset/versioned/scheme/register.go | 14 +--
pkg/cmd/install.go | 2 +-
pkg/controller/build/build_controller.go | 4 +-
pkg/controller/build/build_monitor_test.go | 4 +-
pkg/controller/build/build_pod.go | 38 ++++++++
pkg/controller/integrationkit/build.go | 16 ++--
pkg/platform/defaults.go | 16 ++--
pkg/platform/defaults_test.go | 16 +++-
pkg/resources/resources.go | 8 +-
pkg/trait/builder.go | 17 +++-
pkg/trait/container.go | 65 +++++--------
pkg/trait/quarkus.go | 7 +-
pkg/trait/trait_types.go | 3 +-
pkg/util/kubernetes/factory.go | 13 +++
pkg/util/kubernetes/factory_test.go | 15 +++
resources/traits.yaml | 16 ++++
51 files changed, 898 insertions(+), 213 deletions(-)
create mode 100644
pkg/client/camel/applyconfiguration/camel/v1/buildconfiguration.go