You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/13 10:00:56 UTC

[camel-spring-boot] branch master updated (168532a -> cb50aeb)

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

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


    from 168532a  Regen
     new 9d64fae  add camel-example-spring-boot-strimzi
     new 3433d2f  fix typo
     new 2338b8c  change quotes
     new e8b4c26  Merge branch 'master' of https://github.com/apache/camel-spring-boot into CAMEL-12191
     new c24b5db  change readme and scripts & fix pom
     new 280de0f  Merge branch 'master' of https://github.com/apache/camel-spring-boot into CAMEL-12191
     new 36cf5c5  fix post-review issues
     new fafcf5b  Merge branch 'master' of https://github.com/apache/camel-spring-boot into CAMEL-12191
     new b2af747  revert KAFKA_BOOTSTRAP_ROUTE_URL
     new ae510d1  fix post-review issues: change license, fix kafka camel properties, indentation
     new 4e09d2b  change legacy property name
     new cb50aeb  Merge pull request #26 from mabulgu/CAMEL-12191

The 41006 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:
 .../camel-example-spring-boot-strimzi/.gitignore   |   1 +
 .../camel-example-spring-boot-strimzi/README.adoc  | 272 +++++++++++++++++++++
 examples/camel-example-spring-boot-strimzi/pom.xml | 129 ++++++++++
 .../prepare-truststore.sh                          |  11 +
 .../route-diagram.png                              | Bin 0 -> 10741 bytes
 .../src/main/fabric8/deployment.yml                |  24 ++
 .../apache/camel/example/strimzi}/Application.java |  10 +-
 .../example/strimzi/StrimziRouteBuilder.java}      |  24 +-
 .../main/resources/application-local.properties    |  10 +
 .../src/main/resources/application.properties      |  10 +
 .../main/resources/kafka-ephemeral-kubernetes.yaml |  25 ++
 .../main/resources/kafka-ephemeral-openshift.yaml  |  27 ++
 examples/pom.xml                                   |   6 +-
 13 files changed, 527 insertions(+), 22 deletions(-)
 create mode 100644 examples/camel-example-spring-boot-strimzi/.gitignore
 create mode 100644 examples/camel-example-spring-boot-strimzi/README.adoc
 create mode 100644 examples/camel-example-spring-boot-strimzi/pom.xml
 create mode 100755 examples/camel-example-spring-boot-strimzi/prepare-truststore.sh
 create mode 100644 examples/camel-example-spring-boot-strimzi/route-diagram.png
 create mode 100644 examples/camel-example-spring-boot-strimzi/src/main/fabric8/deployment.yml
 copy examples/{camel-example-spring-boot-pojo/src/main/java/sample/camel => camel-example-spring-boot-strimzi/src/main/java/org/apache/camel/example/strimzi}/Application.java (84%)
 copy examples/{camel-example-spring-boot-rest-producer/src/main/java/sample/camel/RestRoute.java => camel-example-spring-boot-strimzi/src/main/java/org/apache/camel/example/strimzi/StrimziRouteBuilder.java} (67%)
 create mode 100644 examples/camel-example-spring-boot-strimzi/src/main/resources/application-local.properties
 create mode 100644 examples/camel-example-spring-boot-strimzi/src/main/resources/application.properties
 create mode 100644 examples/camel-example-spring-boot-strimzi/src/main/resources/kafka-ephemeral-kubernetes.yaml
 create mode 100644 examples/camel-example-spring-boot-strimzi/src/main/resources/kafka-ephemeral-openshift.yaml