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 336620f Updated CHANGELOG.md
add c94d6e7 Add containerization options.
add ec44786 Add base image creation support.
add f9428ee Reorganise code.
add ec4ed02 Add support for creating integration image.
add c4c6488 Add docker temporary directory.
add 8ec6f48 Add property option to local create.
add 30f8107 Add integration docker file creation.
add 6d6463b Build integration image.
add ab0d7d9 Run container locally.
add 9594969 Add modeline support for local create.
add 23b4ece Add image flag.
add 67408b3 Fix image tag addition.
add 8e59423 Use default base image name.
add f342639 Fix creation of intermediate files in the local folder.
add 1f6eb57 Prevent intermediate file emission. Fix base image build.
add 368537b Fix image path for base. Fix image path for integration.
add 34db046 Add runtime dependency
add c1660ce Add runtime quarkus depenency.
add 143e020 Use same directories inside the container as kube does.
add 598a6b4 Set stdout and stderr.
add a9c595b Format go.mod file.
add 0910b2d Expand environment variables in modeline options.
No new revisions were added by this update.
Summary of changes:
pkg/cmd/inspect.go | 14 ++-
pkg/cmd/local.go | 1 +
pkg/cmd/local_create.go | 178 +++++++++++++++++++++++++++++
pkg/cmd/local_run.go | 84 ++++++++++++--
pkg/cmd/modeline.go | 38 +++++-
pkg/cmd/util_commands.go | 65 +++++++----
pkg/cmd/util_containerization.go | 186 ++++++++++++++++++++++++++++++
pkg/cmd/util_dependencies.go | 108 ++++++++++--------
pkg/kamelet/repository/go.mod | 3 +-
pkg/util/docker/docker.go | 159 ++++++++++++++++++++++++++
pkg/util/docker/docker_base.go | 241 +++++++++++++++++++++++++++++++++++++++
pkg/util/util.go | 136 ++++++++++++++++++++++
12 files changed, 1133 insertions(+), 80 deletions(-)
create mode 100644 pkg/cmd/local_create.go
create mode 100644 pkg/cmd/util_containerization.go
create mode 100644 pkg/util/docker/docker.go
create mode 100644 pkg/util/docker/docker_base.go