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 55fca8e This is Apache Camel K new 62b4354 Scaffolding project structure new bfca1f2 Add license headers new 8661409 Initial draft of local build system new c3d39e6 First e2e working version new f42dedf Detect changes with digest and redeploy 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: .gitignore | 120 +++++ Gopkg.lock | 577 ++++++++++++++++++++++ Gopkg.toml | 58 +++ LICENSE.txt => LICENSE | 0 Makefile | 1 + NOTICE | 11 + build/Makefile | 30 ++ build/get_version.sh | 4 + build/minishift_add_role.sh | 7 + cmd/camel-k/main.go | 57 +++ config/config.yaml | 3 + deploy/cr.yaml | 22 + deploy/crd.yaml | 13 + deploy/operator.yaml | 30 ++ deploy/rbac.yaml | 46 ++ pkg/apis/camel/v1alpha1/doc.go | 21 + pkg/apis/camel/v1alpha1/register.go | 52 ++ pkg/apis/camel/v1alpha1/types.go | 63 +++ pkg/apis/camel/v1alpha1/zz_generated.deepcopy.go | 102 ++++ pkg/build/api/types.go | 50 ++ pkg/build/build_manager.go | 80 +++ pkg/build/build_manager_integration_test.go | 101 ++++ pkg/build/local/local_builder.go | 480 ++++++++++++++++++ pkg/build/local/local_builder_integration_test.go | 92 ++++ pkg/build/local/scheme.go | 98 ++++ pkg/stub/action/action.go | 35 ++ pkg/stub/action/build.go | 71 +++ pkg/stub/action/deploy.go | 111 +++++ pkg/stub/action/initialize.go | 54 ++ pkg/stub/action/monitor.go | 57 +++ pkg/stub/handler.go | 58 +++ pkg/util/digest/digest.go | 39 ++ pkg/util/kubernetes/wait.go | 39 ++ pkg/util/openshift/register.go | 77 +++ pkg/util/test/testing_env.go | 28 ++ tmp/build/Dockerfile | 6 + tmp/build/build.sh | 18 + tmp/build/docker_build.sh | 11 + tmp/codegen/boilerplate.go.txt | 1 + tmp/codegen/update-generated.sh | 12 + version/version.go | 22 + 41 files changed, 2757 insertions(+) create mode 100644 .gitignore create mode 100644 Gopkg.lock create mode 100644 Gopkg.toml rename LICENSE.txt => LICENSE (100%) create mode 120000 Makefile create mode 100644 NOTICE create mode 100644 build/Makefile create mode 100755 build/get_version.sh create mode 100755 build/minishift_add_role.sh create mode 100644 cmd/camel-k/main.go create mode 100644 config/config.yaml create mode 100644 deploy/cr.yaml create mode 100644 deploy/crd.yaml create mode 100644 deploy/operator.yaml create mode 100644 deploy/rbac.yaml create mode 100644 pkg/apis/camel/v1alpha1/doc.go create mode 100644 pkg/apis/camel/v1alpha1/register.go create mode 100644 pkg/apis/camel/v1alpha1/types.go create mode 100644 pkg/apis/camel/v1alpha1/zz_generated.deepcopy.go create mode 100644 pkg/build/api/types.go create mode 100644 pkg/build/build_manager.go create mode 100644 pkg/build/build_manager_integration_test.go create mode 100644 pkg/build/local/local_builder.go create mode 100644 pkg/build/local/local_builder_integration_test.go create mode 100644 pkg/build/local/scheme.go create mode 100644 pkg/stub/action/action.go create mode 100644 pkg/stub/action/build.go create mode 100644 pkg/stub/action/deploy.go create mode 100644 pkg/stub/action/initialize.go create mode 100644 pkg/stub/action/monitor.go create mode 100644 pkg/stub/handler.go create mode 100644 pkg/util/digest/digest.go create mode 100644 pkg/util/kubernetes/wait.go create mode 100644 pkg/util/openshift/register.go create mode 100644 pkg/util/test/testing_env.go create mode 100644 tmp/build/Dockerfile create mode 100755 tmp/build/build.sh create mode 100755 tmp/build/docker_build.sh create mode 100644 tmp/codegen/boilerplate.go.txt create mode 100755 tmp/codegen/update-generated.sh create mode 100644 version/version.go