From commits-return-65114-archive-asf-public=cust-asf.ponee.io@camel.apache.org Thu Sep 13 13:05:51 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id A8028180649 for ; Thu, 13 Sep 2018 13:05:50 +0200 (CEST) Received: (qmail 93914 invoked by uid 500); 13 Sep 2018 11:05:49 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 93901 invoked by uid 99); 13 Sep 2018 11:05:49 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Sep 2018 11:05:49 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 31BA182C3B; Thu, 13 Sep 2018 11:05:49 +0000 (UTC) Date: Thu, 13 Sep 2018 11:05:49 +0000 To: , "' commits@camel.apache.org" , '@gitbox.apache.org, Subject: [camel-k] branch master updated (51294e5 -> 784e581) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153683674908.12289.2710464029590467430@gitbox.apache.org> From: nferraro@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: camel-k X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 51294e567fc2088e9410d193bc57a4eeedcb6f73 X-Git-Newrev: 784e581131f8e9456cdf6ba84801f3ff3682b4ff X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 51294e5 Set this unuseful file to something that will not change new aa45c71 Allow buildless direct deploy #31 new 784e581 Add CRD aliases 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: deploy/crd-integration-context.yaml | 2 + deploy/crd-integration.yaml | 2 + deploy/resources.go | 9 ++ pkg/apis/camel/v1alpha1/register.go | 2 + pkg/apis/camel/v1alpha1/types.go | 13 ++- pkg/apis/camel/v1alpha1/types_support.go | 66 ++++++++++++ pkg/build/api/types.go | 4 +- pkg/build/build_manager.go | 34 +++--- pkg/build/build_manager_integration_test.go | 4 +- pkg/build/local/local_builder.go | 4 +- pkg/build/local/local_builder_integration_test.go | 16 +-- pkg/build/local/local_builder_test.go | 8 +- pkg/client/cmd/context.go | 3 +- pkg/client/cmd/context_create.go | 120 +++++++++++++++++++++ .../cmd/{context_get.go => context_delete.go} | 49 ++++----- pkg/client/cmd/context_edit.go | 101 ----------------- pkg/client/cmd/context_get.go | 15 +-- pkg/client/cmd/run.go | 14 +-- pkg/stub/action/context/build.go | 51 +++++++-- pkg/stub/action/context/edit.go | 46 -------- pkg/stub/action/context/{save.go => initialize.go} | 27 ++--- pkg/stub/action/context/monitor.go | 32 +++--- pkg/stub/action/integration/build.go | 28 ++++- pkg/stub/action/integration/initialize.go | 2 +- pkg/stub/action/integration/monitor.go | 2 +- pkg/stub/handler.go | 6 +- pkg/util/digest/digest.go | 35 +++++- 27 files changed, 413 insertions(+), 282 deletions(-) create mode 100644 pkg/apis/camel/v1alpha1/types_support.go create mode 100644 pkg/client/cmd/context_create.go copy pkg/client/cmd/{context_get.go => context_delete.go} (53%) delete mode 100644 pkg/client/cmd/context_edit.go delete mode 100644 pkg/stub/action/context/edit.go rename pkg/stub/action/context/{save.go => initialize.go} (56%)