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 2023/03/09 12:45:19 UTC

[camel-kamelets] branch kafka-source-389 created (now 744a56c2)

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

acosentino pushed a change to branch kafka-source-389
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


      at 744a56c2 Switch examples to use Kafka kamelets

This branch includes the following new commits:

     new 744a56c2 Switch examples to use Kafka kamelets

The 1 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.



[camel-kamelets] 01/01: Switch examples to use Kafka kamelets

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

acosentino pushed a commit to branch kafka-source-389
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 744a56c2cd21ced088f7649a8d40c19042144f68
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 9 13:33:22 2023 +0100

    Switch examples to use Kafka kamelets
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 docs/modules/ROOT/examples/js/kamelets.js | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/examples/js/kamelets.js b/docs/modules/ROOT/examples/js/kamelets.js
index fa257a00..db2ae9a8 100644
--- a/docs/modules/ROOT/examples/js/kamelets.js
+++ b/docs/modules/ROOT/examples/js/kamelets.js
@@ -190,9 +190,12 @@ const kameletBindings = {
           ref: {
             kind: 'Kamelet',
             apiVersion: 'camel.apache.org/v1alpha1',
-            name: 'timer-source',
+            name: 'kafka-source',
             properties: {
-              message: 'Hello',
+              bootstrapServers: 'localhost:9092',
+              topic: 'mytopic',
+              user: 'kafka',
+              password: 'kafka123!'
             },
           },
         },