You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/02/22 10:04:57 UTC

[camel-k] branch master updated (5e3d879 -> 9e8ee20)

This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git.


    from 5e3d879  add an option to set which runtime version the operator should to run integrations #469
     new de0a85b  add finalizer to ensure integration children are cleaned up #477
     new 3b472b8  chore(lint): fix findings
     new 9e8ee20  fix review findings #477

The 540 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:
 pkg/apis/camel/v1alpha1/integration_types.go       |   2 +
 pkg/cmd/completion_bash.go                         |  12 ++
 pkg/cmd/install.go                                 |   2 +-
 pkg/cmd/run.go                                     |  13 +-
 pkg/controller/integration/delete.go               | 143 +++++++++++++++++++++
 .../integration/integration_controller.go          |  12 ++
 pkg/trait/gc.go                                    |  85 ++----------
 pkg/trait/owner.go                                 |  20 +++
 pkg/{gzip/compress_test.go => trait/owner_test.go} |  20 +--
 pkg/trait/util.go                                  |   1 +
 pkg/util/finalizer/finalizer.go                    |  81 ++++++++++++
 pkg/util/kubernetes/util.go                        |  73 +++++++++++
 12 files changed, 378 insertions(+), 86 deletions(-)
 create mode 100644 pkg/controller/integration/delete.go
 copy pkg/{gzip/compress_test.go => trait/owner_test.go} (65%)
 create mode 100644 pkg/util/finalizer/finalizer.go