You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/11/04 06:26:21 UTC

[camel-examples] branch main updated (a6cb268 -> 7f5e5ea)

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

acosentino pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git.


    from a6cb268  CAMEL-17042: Upgrade maven wrapper to maven 3.8.3
     new c9ed0dc  Added Kafka to Azure Storage Blob Example
     new eb1ce11  Kafka to Azure Storage Blob Example
     new 914a91b  Kafka to Azure Storage Blob Example: README aligned
     new 331b7cf  Kafka To Azure Example added to examples POM
     new ed0eb4f  Regen docs
     new 3f282a6  Kafka to Azure Example: Improved Description
     new 7f5e5ea  Regen docs

The 7 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:
 examples/README.adoc                               |  6 +++-
 examples/kafka-azure/README.adoc                   | 37 ++++++++++++++++++++++
 .../pom.xml                                        | 10 +++---
 .../org/apache/camel/example/MyApplication.java    |  0
 .../org/apache/camel/example/MyRouteBuilder.java   | 13 ++++----
 .../src/main/resources/application.properties      | 10 +++---
 .../src/main/resources/logback.xml                 |  0
 examples/pom.xml                                   |  1 +
 8 files changed, 60 insertions(+), 17 deletions(-)
 create mode 100644 examples/kafka-azure/README.adoc
 copy examples/{aws/main-endpointdsl-aws2-s3-kafka => kafka-azure}/pom.xml (90%)
 copy examples/{main-tiny => kafka-azure}/src/main/java/org/apache/camel/example/MyApplication.java (100%)
 copy examples/{flight-recorder => kafka-azure}/src/main/java/org/apache/camel/example/MyRouteBuilder.java (74%)
 copy examples/{aws/main-endpointdsl-aws2-s3-kafka => kafka-azure}/src/main/resources/application.properties (86%)
 copy examples/{routetemplate => kafka-azure}/src/main/resources/logback.xml (100%)

[camel-examples] 02/07: Kafka to Azure Storage Blob Example

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git

commit eb1ce11dde7e1fe8c72ff037297914e85867d327
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 4 07:17:02 2021 +0100

    Kafka to Azure Storage Blob Example
---
 examples/kafka-azure/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/kafka-azure/pom.xml b/examples/kafka-azure/pom.xml
index f6f9667..7a0b5c6 100644
--- a/examples/kafka-azure/pom.xml
+++ b/examples/kafka-azure/pom.xml
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.camel.example</groupId>
         <artifactId>examples</artifactId>
-        <version>3.12.0-SNAPSHOT</version>
+        <version>3.13.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>camel-example-main-endpointdsl-kafka-azure-storage-blob</artifactId>

[camel-examples] 05/07: Regen docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git

commit ed0eb4ff42aadb48c1865e081862f6d8a470a176
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 4 07:23:25 2021 +0100

    Regen docs
---
 examples/README.adoc | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/examples/README.adoc b/examples/README.adoc
index 9a65d17..d249f31 100644
--- a/examples/README.adoc
+++ b/examples/README.adoc
@@ -11,7 +11,7 @@ View the individual example READMEs for details.
 == Examples
 
 // examples: START
-Number of Examples: 93 (0 deprecated)
+Number of Examples: 95 (0 deprecated)
 
 [width="100%",cols="4,2,4",options="header"]
 |===
@@ -47,6 +47,8 @@ Number of Examples: 93 (0 deprecated)
 
 | link:java8/README.adoc[Java8] (java8) | Beginner | An example for showing Camel DSL for Java 8
 
+| link:kafka-azure/README.adoc[Kafka Azure] (kafka-azure) | Beginner | An example for showing standalone Camel with Endpoint DSL and Kafka and Azure Storage Blob
+
 | link:kamelet/README.adoc[Kamelet] (kamelet) | Beginner | How to use Kamelets
 
 | link:kamelet-chucknorris/README.adoc[Kamelet Chucknorris] (kamelet-chucknorris) | Beginner | How easy it is to create your own Kamelets
@@ -84,6 +86,8 @@ Number of Examples: 93 (0 deprecated)
 
 | link:routeloader/README.adoc[Routeloader] (routeloader) | Beginner | Example loading and compiling Java routes on startup
 
+| link:routes-configuration/README.adoc[Routes Configuration] (routes-configuration) | Beginner | Example with global routes configuration for error handling
+
 | link:routetemplate/README.adoc[Routetemplate] (routetemplate) | Beginner | How to use route templates (parameterized routes)
 
 | link:servlet-tomcat/README.adoc[Servlet Tomcat] (servlet-tomcat) | Beginner | An example using Camel Servlet with Apache Tomcat

[camel-examples] 01/07: Added Kafka to Azure Storage Blob Example

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git

commit c9ed0dcd5dd58be49ec18747f107108bd491e433
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 4 07:10:16 2021 +0100

    Added Kafka to Azure Storage Blob Example
---
 examples/kafka-azure/README.adoc                   |  61 ++++++++++++
 examples/kafka-azure/pom.xml                       | 106 +++++++++++++++++++++
 .../org/apache/camel/example/MyApplication.java    |  38 ++++++++
 .../org/apache/camel/example/MyRouteBuilder.java   |  33 +++++++
 .../src/main/resources/application.properties      |  28 ++++++
 .../kafka-azure/src/main/resources/logback.xml     |  30 ++++++
 6 files changed, 296 insertions(+)

diff --git a/examples/kafka-azure/README.adoc b/examples/kafka-azure/README.adoc
new file mode 100644
index 0000000..0e4ed22
--- /dev/null
+++ b/examples/kafka-azure/README.adoc
@@ -0,0 +1,61 @@
+== Camel Example Main Endpoint DSL with AWS2 S3 component to Kafka
+
+This example shows how to use the endpoint DSL in your Camel routes
+to define endpoints using type safe fluent builders, which are Java methods
+that are compiled and it will show the AWS2-S3 stream mode.
+
+The example will poll two kafka topics (s3.topic.1 and s3.topic.2) and upload batch of 25 messages as single file into an s3 bucket (mycamel-1).
+
+On your bucket you'll see:
+
+s3.topic.1/s3.topic.1.txt
+s3.topic.1/s3.topic.1-1.txt
+
+s3.topic.2/s3.topic.2.txt
+s3.topic.2/s3.topic.2-1.txt
+
+and so on
+
+At the end you should have a total of 80 files.
+
+Notice how you can configure Camel in the `application.properties` file.
+
+This example will use the AWS default credentials Provider: https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/credentials.html
+Set your credentials accordingly.
+Don't forget to add the bucket name (already created ahead of time) and point to the correct topic.
+You'll need also a running kafka broker.
+You'll need to have kafkacat installed.
+
+=== How to run
+
+You can run this example using
+
+[source,sh]
+----
+$ mvn compile
+----
+
+[source,sh]
+----
+$ mvn camel:run
+----
+
+Now run
+
+[source,sh]
+----
+$ data/burst.sh s3.topic.1 1000 msg.txt
+$ data/burst.sh s3.topic.2 1000 msg.txt
+----
+
+You should see the bucket populated.
+
+=== Help and contributions
+
+If you hit any problem using Camel or have some feedback, then please
+https://camel.apache.org/community/support/[let us know].
+
+We also love contributors, so
+https://camel.apache.org/community/contributing/[get involved] :-)
+
+The Camel riders!
diff --git a/examples/kafka-azure/pom.xml b/examples/kafka-azure/pom.xml
new file mode 100644
index 0000000..f6f9667
--- /dev/null
+++ b/examples/kafka-azure/pom.xml
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.camel.example</groupId>
+        <artifactId>examples</artifactId>
+        <version>3.12.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>camel-example-main-endpointdsl-kafka-azure-storage-blob</artifactId>
+    <packaging>jar</packaging>
+    <name>Camel :: Example :: Main :: Endpoint DSL :: Kafka Azure Storage Blob</name>
+    <description>An example for showing standalone Camel with Endpoint DSL and Kafka and Azure Storage Blob</description>
+
+    <properties>
+        <category>Beginner</category>
+    </properties>
+
+    <dependencyManagement>
+        <dependencies>
+            <!-- Add Camel BOM -->
+            <dependency>
+                <groupId>org.apache.camel</groupId>
+                <artifactId>camel-bom</artifactId>
+                <version>${camel.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-main</artifactId>
+        </dependency>
+        <!-- we use the endpoint-dsl -->
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-endpointdsl</artifactId>
+        </dependency>
+        <!-- we use these 2 camel components in this example -->
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-bean</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-azure-storage-blob</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-kafka</artifactId>
+        </dependency>
+
+        <!-- logging -->
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-core</artifactId>
+            <version>${logback-version}</version>
+        </dependency>
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-classic</artifactId>
+            <version>${logback-version}</version>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+        <plugins>
+            <!-- to run the application -->
+            <plugin>
+                <groupId>org.apache.camel</groupId>
+                <artifactId>camel-maven-plugin</artifactId>
+                <version>${camel.version}</version>
+                <configuration>
+                    <mainClass>org.apache.camel.example.MyApplication</mainClass>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
diff --git a/examples/kafka-azure/src/main/java/org/apache/camel/example/MyApplication.java b/examples/kafka-azure/src/main/java/org/apache/camel/example/MyApplication.java
new file mode 100644
index 0000000..496b37d
--- /dev/null
+++ b/examples/kafka-azure/src/main/java/org/apache/camel/example/MyApplication.java
@@ -0,0 +1,38 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.example;
+
+import org.apache.camel.main.Main;
+
+/**
+ * Main class that boot the Camel application
+ */
+public final class MyApplication {
+
+    private MyApplication() {
+    }
+
+    public static void main(String[] args) throws Exception {
+        // use Camels Main class
+        Main main = new Main();
+        // and add the routes (you can specify multiple classes)
+        main.configure().addRoutesBuilder(MyRouteBuilder.class);
+        // now keep the application running until the JVM is terminated (ctrl + c or sigterm)
+        main.run(args);
+    }
+
+}
diff --git a/examples/kafka-azure/src/main/java/org/apache/camel/example/MyRouteBuilder.java b/examples/kafka-azure/src/main/java/org/apache/camel/example/MyRouteBuilder.java
new file mode 100644
index 0000000..896700c
--- /dev/null
+++ b/examples/kafka-azure/src/main/java/org/apache/camel/example/MyRouteBuilder.java
@@ -0,0 +1,33 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.example;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.builder.endpoint.EndpointRouteBuilder;
+
+public class MyRouteBuilder extends RouteBuilder {
+
+    @Override
+    public void configure() throws Exception {
+
+        
+        from("kafka:{{topicName}}?brokers={{brokers}}")
+          .setHeader("CamelAzureStorageBlobBlobName", simple("${exchangeId}"))
+          .to("azure-storage-blob://{{accountName}}/{{containerName}}/?accessKey=RAW({{accessKey}})&operation=uploadBlockBlob");
+
+    }
+}
diff --git a/examples/kafka-azure/src/main/resources/application.properties b/examples/kafka-azure/src/main/resources/application.properties
new file mode 100644
index 0000000..e1580c2
--- /dev/null
+++ b/examples/kafka-azure/src/main/resources/application.properties
@@ -0,0 +1,28 @@
+## ---------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements.  See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You under the Apache License, Version 2.0
+## (the "License"); you may not use this file except in compliance with
+## the License.  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+## ---------------------------------------------------------------------------
+
+# to configure camel main
+# here you can configure options on camel main (see MainConfigurationProperties class)
+camel.main.name = Kafka-to-Azure-Storage-Blob
+
+# properties used in the route
+accessKey=<accessKey>
+accountName=<accountName>
+containerName=<containerName>
+
+topicName=<topic>
+brokers=localhost:9092
diff --git a/examples/kafka-azure/src/main/resources/logback.xml b/examples/kafka-azure/src/main/resources/logback.xml
new file mode 100644
index 0000000..a798d0b
--- /dev/null
+++ b/examples/kafka-azure/src/main/resources/logback.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <root level="INFO">
+        <appender-ref ref="STDOUT" />
+    </root>
+</configuration>

[camel-examples] 04/07: Kafka To Azure Example added to examples POM

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git

commit 331b7cfb66fc89913e6116335b4d444477fd34aa
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 4 07:21:21 2021 +0100

    Kafka To Azure Example added to examples POM
---
 examples/pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/examples/pom.xml b/examples/pom.xml
index 46687a1..0744dba 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -122,6 +122,7 @@
         <module>jmx</module>
         <module>jooq</module>
         <module>kafka</module>
+        <module>kafka-azure</module>
         <module>kamelet</module>
         <module>kamelet-chucknorris</module>
         <module>kamelet-main</module>

[camel-examples] 03/07: Kafka to Azure Storage Blob Example: README aligned

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git

commit 914a91b88a2237577afe78b79f83f7f33652a8df
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 4 07:20:45 2021 +0100

    Kafka to Azure Storage Blob Example: README aligned
---
 examples/kafka-azure/README.adoc | 38 +++++++-------------------------------
 1 file changed, 7 insertions(+), 31 deletions(-)

diff --git a/examples/kafka-azure/README.adoc b/examples/kafka-azure/README.adoc
index 0e4ed22..6af0311 100644
--- a/examples/kafka-azure/README.adoc
+++ b/examples/kafka-azure/README.adoc
@@ -1,30 +1,12 @@
-== Camel Example Main Endpoint DSL with AWS2 S3 component to Kafka
+== Camel Main Example Kafka to Azure Storage Blob
 
-This example shows how to use the endpoint DSL in your Camel routes
-to define endpoints using type safe fluent builders, which are Java methods
-that are compiled and it will show the AWS2-S3 stream mode.
+This example shows how to use the Camel Main module
+to define a route from Kafka to Azure Storage blob
 
-The example will poll two kafka topics (s3.topic.1 and s3.topic.2) and upload batch of 25 messages as single file into an s3 bucket (mycamel-1).
+The example will poll one kafka topic and upload single message as blob into an Azure Storage Blob Container.
 
-On your bucket you'll see:
-
-s3.topic.1/s3.topic.1.txt
-s3.topic.1/s3.topic.1-1.txt
-
-s3.topic.2/s3.topic.2.txt
-s3.topic.2/s3.topic.2-1.txt
-
-and so on
-
-At the end you should have a total of 80 files.
-
-Notice how you can configure Camel in the `application.properties` file.
-
-This example will use the AWS default credentials Provider: https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/credentials.html
-Set your credentials accordingly.
-Don't forget to add the bucket name (already created ahead of time) and point to the correct topic.
+Set your application.properties options correctly.
 You'll need also a running kafka broker.
-You'll need to have kafkacat installed.
 
 === How to run
 
@@ -40,15 +22,9 @@ $ mvn compile
 $ mvn camel:run
 ----
 
-Now run
-
-[source,sh]
-----
-$ data/burst.sh s3.topic.1 1000 msg.txt
-$ data/burst.sh s3.topic.2 1000 msg.txt
-----
+Now send a message to your Kafka broker direct to the Kafka topic set in application.properties
 
-You should see the bucket populated.
+You should see the container populated.
 
 === Help and contributions
 

[camel-examples] 06/07: Kafka to Azure Example: Improved Description

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git

commit 3f282a638237b7dc9498e2d2dc17cde98c460fda
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 4 07:24:15 2021 +0100

    Kafka to Azure Example: Improved Description
---
 examples/kafka-azure/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/kafka-azure/pom.xml b/examples/kafka-azure/pom.xml
index 7a0b5c6..866b814 100644
--- a/examples/kafka-azure/pom.xml
+++ b/examples/kafka-azure/pom.xml
@@ -28,10 +28,10 @@
         <version>3.13.0-SNAPSHOT</version>
     </parent>
 
-    <artifactId>camel-example-main-endpointdsl-kafka-azure-storage-blob</artifactId>
+    <artifactId>camel-example-main-kafka-azure-storage-blob</artifactId>
     <packaging>jar</packaging>
-    <name>Camel :: Example :: Main :: Endpoint DSL :: Kafka Azure Storage Blob</name>
-    <description>An example for showing standalone Camel with Endpoint DSL and Kafka and Azure Storage Blob</description>
+    <name>Camel :: Example :: Main :: Kafka Azure Storage Blob</name>
+    <description>An example for showing standalone Camel with Kafka and Azure Storage Blob</description>
 
     <properties>
         <category>Beginner</category>

[camel-examples] 07/07: Regen docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git

commit 7f5e5ea5892db4d5ca4d199c8f57a8f1d9d77f9f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 4 07:25:41 2021 +0100

    Regen docs
---
 examples/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/README.adoc b/examples/README.adoc
index d249f31..a2262d5 100644
--- a/examples/README.adoc
+++ b/examples/README.adoc
@@ -47,7 +47,7 @@ Number of Examples: 95 (0 deprecated)
 
 | link:java8/README.adoc[Java8] (java8) | Beginner | An example for showing Camel DSL for Java 8
 
-| link:kafka-azure/README.adoc[Kafka Azure] (kafka-azure) | Beginner | An example for showing standalone Camel with Endpoint DSL and Kafka and Azure Storage Blob
+| link:kafka-azure/README.adoc[Kafka Azure] (kafka-azure) | Beginner | An example for showing standalone Camel with Kafka and Azure Storage Blob
 
 | link:kamelet/README.adoc[Kamelet] (kamelet) | Beginner | How to use Kamelets