This is an automated email from the ASF dual-hosted git repository.
nferraro pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git.
from 22fe728 feat(JVM): Max heap size heuristic based on container memory
limit
new cb02978 fix #1188: add init command
new b664a0d fix #1188: remove linter from autogenerated file
new 38ae42e fix #1188: use pointer for decoding
new d983970 fix #1188: rebasing
new 1fc3a88 fix #1188: delete mod time from FS
The 5 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:
.golangci.yml | 9 +
assets/json-schema/Integration.json | 6 +
cmd/util/vfs-gen/main.go | 158 +
deploy/olm-catalog/.vfsignore | 1 +
deploy/resources.go | 10433 +-------------------
deploy/resources_support.go | 83 +
deploy/resources_test.go | 56 +
deploy/templates/groovy.tmpl | 8 +
deploy/templates/java.tmpl | 17 +
deploy/templates/js.tmpl | 8 +
deploy/templates/kts.tmpl | 8 +
deploy/templates/xml.tmpl | 19 +
deploy/templates/yaml.tmpl | 11 +
e2e/run_test.go | 27 +
e2e/util/temp_file.go | 18 +-
go.mod | 2 +
go.sum | 4 +
pkg/cmd/init.go | 114 +
pkg/cmd/install.go | 5 +-
pkg/cmd/root.go | 1 +
pkg/controller/integrationplatform/create.go | 2 +-
pkg/controller/integrationplatform/create_test.go | 2 +-
pkg/install/cluster.go | 4 +-
pkg/install/common.go | 2 +-
pkg/install/operator.go | 2 +-
pkg/trait/prometheus.go | 2 +-
pkg/util/camel/catalog.go | 4 +-
script/Makefile | 10 +-
script/embed_resources.sh | 40 +-
29 files changed, 1065 insertions(+), 9991 deletions(-)
create mode 100644 cmd/util/vfs-gen/main.go
create mode 100644 deploy/olm-catalog/.vfsignore
create mode 100644 deploy/resources_support.go
create mode 100644 deploy/resources_test.go
create mode 100644 deploy/templates/groovy.tmpl
create mode 100644 deploy/templates/java.tmpl
create mode 100644 deploy/templates/js.tmpl
create mode 100644 deploy/templates/kts.tmpl
create mode 100644 deploy/templates/xml.tmpl
create mode 100644 deploy/templates/yaml.tmpl
create mode 100644 pkg/cmd/init.go