You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2020/07/15 16:21:48 UTC

[camel-k] branch master updated (f478b85 -> 2594fd4)

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

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


    from f478b85  Upgrade Knative to version 0.15.0 (#1605)
     add 7af003b  feat: Structured traits configuration serialization
     add adf0b7d  chore(trait): Migrate the JVM trait to structured serialization
     add 9a6df20  fix: The options parameter from the JVM trait should support value containing commas
     add 071035e  chore(trait): Migrate the Environment trait to structured serialization
     add 9435f01  chore(trait): Migrate the Knative trait to structured serialization
     add 9819eb4  chore(trait): Migrate the Owner trait to structured serialization
     add 082172e  chore(trait): Migrate the Container trait to structured serialization
     add e5aa9d8  chore(trait): Migrate the Route trait to structured serialization
     add 7e4d2db  chore(trait): Migrate the Service trait to structured serialization
     add 2e56231  chore(trait): Migrate the Knative Service trait to structured serialization
     add 106bdfb  chore(trait): Re-introduce Configuration field for backward compatibility
     add 643cc53  chore: Rebuild resources
     add a812e84  chore(trait): Migrate the Jolokia trait to structured serialization
     add 97c973c  chore(trait): Migrate the Prometheus trait to structured serialization
     add f1f49e1  chore: nodeport -> NodePort in Service trait
     add 706f9ed  chore(trait): Migrate the Builder trait to structured serialization
     add eff5e8c  chore(trait): Migrate the Camel trait to structured serialization
     add 2e1ce3a  chore(trait): Migrate the Cron trait to structured serialization
     add 0282f15  chore(trait): Migrate the Deployer trait to structured serialization
     add f035935  chore(trait): Migrate the GC trait to structured serialization
     add 1ff1d54  chore(trait): Migrate the Ingress trait to structured serialization
     add afe2f3f  chore(trait): Migrate the Istio trait to structured serialization
     add dd53f44  chore(trait): Migrate the Platform trait to structured serialization
     add 4e50c2d  chore(trait): Migrate the Pull Secret trait to structured serialization
     add 4298fa5  chore(trait): Migrate the Quarkus trait to structured serialization
     add e41191f  chore(trait): Migrate the Master trait to structured serialization
     add d6fb808  chore(trait): Migrate the 3Scale trait to structured serialization
     add 9d62612  chore(trait): Migrate the Tracing trait to structured serialization
     add 064069d  chore(trait): Migrate the Affinity trait to structured serialization
     add 553416a  chore: Update traits documentation
     add 2594fd4  chore: Rebuild resources

No new revisions were added by this update.

Summary of changes:
 addons/master/master.go                            |  12 +-
 addons/threescale/3scale.go                        |  10 +-
 addons/tracing/tracing.go                          |  10 +-
 deploy/crd-integration-kit.yaml                    |   6 -
 deploy/crd-integration-platform.yaml               |  12 --
 deploy/crd-integration.yaml                        |   4 +-
 .../integrations.camel.apache.org.crd.yaml         |   4 +-
 deploy/resources.go                                |  16 +--
 deploy/traits.yaml                                 |  83 ++++++------
 docs/modules/traits/pages/affinity.adoc            |   6 +-
 docs/modules/traits/pages/deployment.adoc          |   2 +-
 docs/modules/traits/pages/jolokia.adoc             |   7 +-
 docs/modules/traits/pages/jvm.adoc                 |  12 +-
 docs/modules/traits/pages/knative.adoc             |  24 ++--
 docs/modules/traits/pages/owner.adoc               |   8 +-
 docs/modules/traits/pages/prometheus.adoc          |   2 +-
 docs/modules/traits/pages/service.adoc             |   4 +
 helm/camel-k/crds/crd-integration.yaml             |   4 +-
 pkg/apis/camel/v1/common_types.go                  |   9 +-
 pkg/apis/camel/v1/common_types_support.go          |  10 --
 pkg/apis/camel/v1/zz_generated.deepcopy.go         |  29 +++-
 pkg/cmd/describe.go                                |  25 +++-
 pkg/cmd/describe_integration.go                    |  12 +-
 pkg/cmd/describe_kit.go                            |  13 +-
 pkg/cmd/describe_platform.go                       |  12 +-
 pkg/cmd/kit_create.go                              |  88 +++++-------
 pkg/cmd/run.go                                     | 149 ++++++++++++++-------
 pkg/cmd/trait_help.go                              |  22 +--
 pkg/controller/integration/util.go                 |  56 +++++---
 pkg/controller/integration/util_test.go            |  72 ++++------
 pkg/trait/affinity.go                              |  27 ++--
 pkg/trait/affinity_test.go                         |   6 +-
 pkg/trait/builder.go                               |   2 +-
 pkg/trait/camel.go                                 |   2 +-
 pkg/trait/container.go                             |  46 +++----
 pkg/trait/container_probes_test.go                 |  12 +-
 pkg/trait/container_test.go                        |  13 +-
 pkg/trait/cron.go                                  |  10 +-
 pkg/trait/cron_test.go                             |  37 +++--
 pkg/trait/deployer.go                              |   2 +-
 pkg/trait/environment.go                           |   2 +-
 pkg/trait/environment_test.go                      |  17 +--
 pkg/trait/gc.go                                    |   2 +-
 pkg/trait/ingress.go                               |   4 +-
 pkg/trait/istio.go                                 |   4 +-
 pkg/trait/istio_test.go                            |  21 +--
 pkg/trait/jolokia.go                               |  73 +++++-----
 pkg/trait/jolokia_test.go                          |  84 ++++++++----
 pkg/trait/jvm.go                                   |  22 ++-
 pkg/trait/knative.go                               |  85 ++++++------
 pkg/trait/knative_service.go                       |  12 +-
 pkg/trait/knative_service_test.go                  |  38 +++---
 pkg/trait/knative_test.go                          |  41 +++---
 pkg/trait/owner.go                                 |  18 ++-
 pkg/trait/owner_test.go                            |  15 +--
 pkg/trait/platform.go                              |   4 +-
 pkg/trait/prometheus.go                            |  10 +-
 pkg/trait/pull_secret.go                           |   4 +-
 pkg/trait/quarkus.go                               |   2 +-
 pkg/trait/route.go                                 |  14 +-
 pkg/trait/route_test.go                            |  29 ++--
 pkg/trait/service.go                               |  16 +--
 pkg/trait/service_test.go                          |  77 +++++------
 pkg/trait/trait_catalog.go                         |  15 ++-
 pkg/trait/trait_test.go                            |  63 ++++-----
 pkg/trait/trait_types.go                           |  12 +-
 pkg/trait/util.go                                  |  48 ++-----
 pkg/util/digest/digest.go                          |  18 ++-
 pkg/util/indentedwriter/writer.go                  |  14 +-
 .../test/trait.go}                                 |  50 ++++---
 pkg/util/util.go                                   |  25 ++++
 71 files changed, 878 insertions(+), 841 deletions(-)
 copy pkg/{metadata/metadata_capabilities_test.go => util/test/trait.go} (60%)