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/05/25 12:41:49 UTC

[camel-kamelets] branch 1475-4 created (now 9dc9e339)

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

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


      at 9dc9e339 Bean: Use properties instead of property with key and value - Kafka SSL Source

This branch includes the following new commits:

     new 818be38f Bean: Use properties instead of property with key and value - Kafka SCRAM source
     new 8864ae82 Bean: Use properties instead of property with key and value - Kafka SCRAM source
     new e0d6f146 Bean: Use properties instead of property with key and value - Kafka Source
     new 1ea80a66 Bean: Use properties instead of property with key and value - Kafka Source
     new 4d184484 Bean: Use properties instead of property with key and value - Kafka SSL Sink
     new 7a8a80b9 Bean: Use properties instead of property with key and value - Kafka SSL Sink
     new 6d3e9838 Bean: Use properties instead of property with key and value - Kafka SSL Source
     new 32304aa9 Bean: Use properties instead of property with key and value - Kafka SSL Source
     new 862ebbe3 Bean: Use properties instead of property with key and value - Kafka SSL Source
     new 9dc9e339 Bean: Use properties instead of property with key and value - Kafka SSL Source

The 10 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] 07/10: Bean: Use properties instead of property with key and value - Kafka SSL Source

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

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

commit 6d3e983864f144f8b5fe65ed72eb16d447bf67db
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:36:24 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka SSL Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/kafka-ssl-source.kamelet.yaml | 47 ++++++++++++----------------------
 1 file changed, 16 insertions(+), 31 deletions(-)

diff --git a/kamelets/kafka-ssl-source.kamelet.yaml b/kamelets/kafka-ssl-source.kamelet.yaml
index 0dfadc26..8d9e5172 100644
--- a/kamelets/kafka-ssl-source.kamelet.yaml
+++ b/kamelets/kafka-ssl-source.kamelet.yaml
@@ -155,37 +155,22 @@ spec:
       - name: kafka-ssl-source-local
         type: '#class:org.apache.camel.component.kafka.KafkaComponent'
       - name: kafka-ssl-sink-configuration-local
-        property:
-          - key: brokers
-            value: '{{bootstrapServers}}'
-          - key: securityProtocol
-            value: '{{securityProtocol}}'
-          - key: sslKeystoreLocation
-            value: '{{?sslKeystoreLocation}}'
-          - key: sslKeyPassword
-            value: '{{sslKeyPassword}}'
-          - key: sslKeystorePassword
-            value: '{{?sslKeystorePassword}}'
-          - key: sslTruststoreLocation
-            value: '{{sslTruststoreLocation}}'
-          - key: sslProtocol
-            value: '{{sslProtocol}}'
-          - key: sslEnabledProtocols
-            value: '{{sslEnabledProtocols}}'
-          - key: saslMechanism
-            value: '{{saslMechanism}}'
-          - key: groupId
-            value: '{{?consumerGroup}}'
-          - key: autoOffsetReset
-            value: '{{autoOffsetReset}}'
-          - key: pollOnError
-            value: '{{pollOnError}}'
-          - key: allowManualCommit
-            value: '{{allowManualCommit}}'
-          - key: autoCommitEnable
-            value: '{{autoCommitEnable}}'
-          - key: saslJaasConfig
-            value: '{{?saslJaasConfig}}'
+        properties:
+          brokers: '{{bootstrapServers}}'
+          securityProtocol: '{{securityProtocol}}'
+          sslKeystoreLocation: '{{sslKeystoreLocation}}'
+          sslKeyPassword: '{{sslKeyPassword}}'
+          sslKeystorePassword: '{{sslKeystorePassword}}'
+          sslTruststoreLocation: '{{sslTruststoreLocation}}'
+          sslProtocol: '{{sslProtocol}}'
+          sslEnabledProtocols: '{{sslEnabledProtocols}}'
+          saslMechanism: '{{saslMechanism}}' 
+          groupId: '{{?consumerGroup}}'
+          autoOffsetReset: '{{autoOffsetReset}}'
+          pollOnError: '{{pollOnError}}'
+          allowManualCommit: '{{allowManualCommit}}'
+          autoCommitEnable: '{{autoCommitEnable}}'
+          saslJaasConfig: '{{?saslJaasConfig}}'
         type: '#class:org.apache.camel.component.kafka.KafkaConfiguration'
       - name: kafkaHeaderDeserializer
         type: "#class:org.apache.camel.kamelets.utils.serialization.kafka.KafkaHeaderDeserializer"


[camel-kamelets] 04/10: Bean: Use properties instead of property with key and value - Kafka Source

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

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

commit 1ea80a66f723606fb103ecad6a217f6e5f5e1a75
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:24:11 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/kafka-source.kamelet.yaml            | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-source.kamelet.yaml
index 4d7752fd..0e110991 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/kafka-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-source.kamelet.yaml
@@ -134,9 +134,8 @@ spec:
     beans:
       - name: kafkaHeaderDeserializer
         type: "#class:org.apache.camel.kamelets.utils.serialization.kafka.KafkaHeaderDeserializer"
-        property:
-          - key: enabled
-            value: '{{deserializeHeaders}}'
+        properties:
+          enabled: '{{deserializeHeaders}}'
     from:
       uri: "kafka:{{topic}}"
       parameters:


[camel-kamelets] 05/10: Bean: Use properties instead of property with key and value - Kafka SSL Sink

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

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

commit 4d1844842bd6d345fb42b967f2531c41c95cc68f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:30:01 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka SSL Sink
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/kafka-ssl-sink.kamelet.yaml | 29 ++++++++++-------------------
 1 file changed, 10 insertions(+), 19 deletions(-)

diff --git a/kamelets/kafka-ssl-sink.kamelet.yaml b/kamelets/kafka-ssl-sink.kamelet.yaml
index ac1777d5..685cab6a 100644
--- a/kamelets/kafka-ssl-sink.kamelet.yaml
+++ b/kamelets/kafka-ssl-sink.kamelet.yaml
@@ -123,25 +123,16 @@ spec:
       - name: kafka-ssl-sink-local
         type: '#class:org.apache.camel.component.kafka.KafkaComponent'
       - name: kafka-ssl-sink-configuration-local
-        property:
-          - key: brokers
-            value: '{{bootstrapServers}}'
-          - key: securityProtocol
-            value: '{{securityProtocol}}'
-          - key: sslKeystoreLocation
-            value: '{{sslKeystoreLocation}}'
-          - key: sslKeyPassword
-            value: '{{sslKeyPassword}}'
-          - key: sslKeystorePassword
-            value: '{{sslKeystorePassword}}'
-          - key: sslTruststoreLocation
-            value: '{{sslTruststoreLocation}}'
-          - key: sslProtocol
-            value: '{{sslProtocol}}'
-          - key: sslEnabledProtocols
-            value: '{{sslEnabledProtocols}}'
-          - key: saslMechanism
-            value: '{{saslMechanism}}'
+        properties:
+          brokers: '{{bootstrapServers}}'
+          securityProtocol: '{{securityProtocol}}'
+          sslKeystoreLocation: '{{sslKeystoreLocation}}'
+          sslKeyPassword: '{{sslKeyPassword}}'
+          sslKeystorePassword: '{{sslKeystorePassword}}'
+          sslTruststoreLocation: '{{sslTruststoreLocation}}'
+          sslProtocol: '{{sslProtocol}}'
+          sslEnabledProtocols: '{{sslEnabledProtocols}}'
+          saslMechanism: '{{saslMechanism}}' 
         type: '#class:org.apache.camel.component.kafka.KafkaConfiguration'
     from:
       uri: "kamelet:source"


[camel-kamelets] 10/10: Bean: Use properties instead of property with key and value - Kafka SSL Source

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

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

commit 9dc9e339e87f562ec7cf74dbf0dfba9fac128649
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:40:49 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka SSL Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml        | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml
index f486700d..e15b59c9 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml
@@ -174,9 +174,8 @@ spec:
         type: '#class:org.apache.camel.component.kafka.KafkaConfiguration'
       - name: kafkaHeaderDeserializer
         type: "#class:org.apache.camel.kamelets.utils.serialization.kafka.KafkaHeaderDeserializer"
-        property:
-          - key: enabled
-            value: '{{deserializeHeaders}}'
+        properties:
+          enabled: '{{deserializeHeaders}}'
     from:
       uri: "{{kafka-ssl-source-local}}:{{topic}}"
       parameters:


[camel-kamelets] 08/10: Bean: Use properties instead of property with key and value - Kafka SSL Source

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

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

commit 32304aa92784498b29c9b879c3a08f76cfe06e4e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:37:52 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka SSL Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/kafka-ssl-source.kamelet.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kamelets/kafka-ssl-source.kamelet.yaml b/kamelets/kafka-ssl-source.kamelet.yaml
index 8d9e5172..f486700d 100644
--- a/kamelets/kafka-ssl-source.kamelet.yaml
+++ b/kamelets/kafka-ssl-source.kamelet.yaml
@@ -154,7 +154,7 @@ spec:
     beans:
       - name: kafka-ssl-source-local
         type: '#class:org.apache.camel.component.kafka.KafkaComponent'
-      - name: kafka-ssl-sink-configuration-local
+      - name: kafka-ssl-source-configuration-local
         properties:
           brokers: '{{bootstrapServers}}'
           securityProtocol: '{{securityProtocol}}'
@@ -180,7 +180,7 @@ spec:
     from:
       uri: "{{kafka-ssl-source-local}}:{{topic}}"
       parameters:
-        configuration: '#bean:{{kafka-ssl-sink-configuration-local}}'
+        configuration: '#bean:{{kafka-ssl-source-configuration-local}}'
       steps:
         - process:
             ref: "{{kafkaHeaderDeserializer}}"


[camel-kamelets] 09/10: Bean: Use properties instead of property with key and value - Kafka SSL Source

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

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

commit 862ebbe3b90ef2a1333ca43b4fa2b1f30eb37779
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:40:07 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka SSL Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/kafka-ssl-source.kamelet.yaml             |  5 +--
 .../kamelets/kafka-ssl-source.kamelet.yaml         | 51 ++++++++--------------
 2 files changed, 20 insertions(+), 36 deletions(-)

diff --git a/kamelets/kafka-ssl-source.kamelet.yaml b/kamelets/kafka-ssl-source.kamelet.yaml
index f486700d..e15b59c9 100644
--- a/kamelets/kafka-ssl-source.kamelet.yaml
+++ b/kamelets/kafka-ssl-source.kamelet.yaml
@@ -174,9 +174,8 @@ spec:
         type: '#class:org.apache.camel.component.kafka.KafkaConfiguration'
       - name: kafkaHeaderDeserializer
         type: "#class:org.apache.camel.kamelets.utils.serialization.kafka.KafkaHeaderDeserializer"
-        property:
-          - key: enabled
-            value: '{{deserializeHeaders}}'
+        properties:
+          enabled: '{{deserializeHeaders}}'
     from:
       uri: "{{kafka-ssl-source-local}}:{{topic}}"
       parameters:
diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml
index 0dfadc26..f486700d 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml
@@ -154,38 +154,23 @@ spec:
     beans:
       - name: kafka-ssl-source-local
         type: '#class:org.apache.camel.component.kafka.KafkaComponent'
-      - name: kafka-ssl-sink-configuration-local
-        property:
-          - key: brokers
-            value: '{{bootstrapServers}}'
-          - key: securityProtocol
-            value: '{{securityProtocol}}'
-          - key: sslKeystoreLocation
-            value: '{{?sslKeystoreLocation}}'
-          - key: sslKeyPassword
-            value: '{{sslKeyPassword}}'
-          - key: sslKeystorePassword
-            value: '{{?sslKeystorePassword}}'
-          - key: sslTruststoreLocation
-            value: '{{sslTruststoreLocation}}'
-          - key: sslProtocol
-            value: '{{sslProtocol}}'
-          - key: sslEnabledProtocols
-            value: '{{sslEnabledProtocols}}'
-          - key: saslMechanism
-            value: '{{saslMechanism}}'
-          - key: groupId
-            value: '{{?consumerGroup}}'
-          - key: autoOffsetReset
-            value: '{{autoOffsetReset}}'
-          - key: pollOnError
-            value: '{{pollOnError}}'
-          - key: allowManualCommit
-            value: '{{allowManualCommit}}'
-          - key: autoCommitEnable
-            value: '{{autoCommitEnable}}'
-          - key: saslJaasConfig
-            value: '{{?saslJaasConfig}}'
+      - name: kafka-ssl-source-configuration-local
+        properties:
+          brokers: '{{bootstrapServers}}'
+          securityProtocol: '{{securityProtocol}}'
+          sslKeystoreLocation: '{{sslKeystoreLocation}}'
+          sslKeyPassword: '{{sslKeyPassword}}'
+          sslKeystorePassword: '{{sslKeystorePassword}}'
+          sslTruststoreLocation: '{{sslTruststoreLocation}}'
+          sslProtocol: '{{sslProtocol}}'
+          sslEnabledProtocols: '{{sslEnabledProtocols}}'
+          saslMechanism: '{{saslMechanism}}' 
+          groupId: '{{?consumerGroup}}'
+          autoOffsetReset: '{{autoOffsetReset}}'
+          pollOnError: '{{pollOnError}}'
+          allowManualCommit: '{{allowManualCommit}}'
+          autoCommitEnable: '{{autoCommitEnable}}'
+          saslJaasConfig: '{{?saslJaasConfig}}'
         type: '#class:org.apache.camel.component.kafka.KafkaConfiguration'
       - name: kafkaHeaderDeserializer
         type: "#class:org.apache.camel.kamelets.utils.serialization.kafka.KafkaHeaderDeserializer"
@@ -195,7 +180,7 @@ spec:
     from:
       uri: "{{kafka-ssl-source-local}}:{{topic}}"
       parameters:
-        configuration: '#bean:{{kafka-ssl-sink-configuration-local}}'
+        configuration: '#bean:{{kafka-ssl-source-configuration-local}}'
       steps:
         - process:
             ref: "{{kafkaHeaderDeserializer}}"


[camel-kamelets] 02/10: Bean: Use properties instead of property with key and value - Kafka SCRAM source

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

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

commit 8864ae82c3e1a0f278185ba1061276a6c89ea9bb
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:20:00 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka SCRAM source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/kafka-scram-source.kamelet.yaml      | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-scram-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-scram-source.kamelet.yaml
index 3be6ba2d..3ca9737a 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/kafka-scram-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-scram-source.kamelet.yaml
@@ -134,9 +134,8 @@ spec:
     beans:
       - name: kafkaHeaderDeserializer
         type: "#class:org.apache.camel.kamelets.utils.serialization.kafka.KafkaHeaderDeserializer"
-        property:
-          - key: enabled
-            value: '{{deserializeHeaders}}'
+        properties:
+          enabled: '{{deserializeHeaders}}'
     from:
       uri: "kafka:{{topic}}"
       parameters:


[camel-kamelets] 03/10: Bean: Use properties instead of property with key and value - Kafka Source

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

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

commit e0d6f146a18a1888847f5f36736782fcf07936e8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:22:48 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/kafka-source.kamelet.yaml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/kamelets/kafka-source.kamelet.yaml b/kamelets/kafka-source.kamelet.yaml
index 4d7752fd..0e110991 100644
--- a/kamelets/kafka-source.kamelet.yaml
+++ b/kamelets/kafka-source.kamelet.yaml
@@ -134,9 +134,8 @@ spec:
     beans:
       - name: kafkaHeaderDeserializer
         type: "#class:org.apache.camel.kamelets.utils.serialization.kafka.KafkaHeaderDeserializer"
-        property:
-          - key: enabled
-            value: '{{deserializeHeaders}}'
+        properties:
+          enabled: '{{deserializeHeaders}}'
     from:
       uri: "kafka:{{topic}}"
       parameters:


[camel-kamelets] 06/10: Bean: Use properties instead of property with key and value - Kafka SSL Sink

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

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

commit 7a8a80b90192b4bfe0a8169d1412f76f7102a660
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:30:34 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka SSL Sink
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../resources/kamelets/kafka-ssl-sink.kamelet.yaml | 29 ++++++++--------------
 1 file changed, 10 insertions(+), 19 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-sink.kamelet.yaml
index ac1777d5..685cab6a 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-sink.kamelet.yaml
@@ -123,25 +123,16 @@ spec:
       - name: kafka-ssl-sink-local
         type: '#class:org.apache.camel.component.kafka.KafkaComponent'
       - name: kafka-ssl-sink-configuration-local
-        property:
-          - key: brokers
-            value: '{{bootstrapServers}}'
-          - key: securityProtocol
-            value: '{{securityProtocol}}'
-          - key: sslKeystoreLocation
-            value: '{{sslKeystoreLocation}}'
-          - key: sslKeyPassword
-            value: '{{sslKeyPassword}}'
-          - key: sslKeystorePassword
-            value: '{{sslKeystorePassword}}'
-          - key: sslTruststoreLocation
-            value: '{{sslTruststoreLocation}}'
-          - key: sslProtocol
-            value: '{{sslProtocol}}'
-          - key: sslEnabledProtocols
-            value: '{{sslEnabledProtocols}}'
-          - key: saslMechanism
-            value: '{{saslMechanism}}'
+        properties:
+          brokers: '{{bootstrapServers}}'
+          securityProtocol: '{{securityProtocol}}'
+          sslKeystoreLocation: '{{sslKeystoreLocation}}'
+          sslKeyPassword: '{{sslKeyPassword}}'
+          sslKeystorePassword: '{{sslKeystorePassword}}'
+          sslTruststoreLocation: '{{sslTruststoreLocation}}'
+          sslProtocol: '{{sslProtocol}}'
+          sslEnabledProtocols: '{{sslEnabledProtocols}}'
+          saslMechanism: '{{saslMechanism}}' 
         type: '#class:org.apache.camel.component.kafka.KafkaConfiguration'
     from:
       uri: "kamelet:source"


[camel-kamelets] 01/10: Bean: Use properties instead of property with key and value - Kafka SCRAM source

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

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

commit 818be38f3595cdd61239e096e652f07ad8980062
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 14:17:54 2023 +0200

    Bean: Use properties instead of property with key and value - Kafka SCRAM source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/kafka-scram-source.kamelet.yaml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/kamelets/kafka-scram-source.kamelet.yaml b/kamelets/kafka-scram-source.kamelet.yaml
index 3be6ba2d..3ca9737a 100644
--- a/kamelets/kafka-scram-source.kamelet.yaml
+++ b/kamelets/kafka-scram-source.kamelet.yaml
@@ -134,9 +134,8 @@ spec:
     beans:
       - name: kafkaHeaderDeserializer
         type: "#class:org.apache.camel.kamelets.utils.serialization.kafka.KafkaHeaderDeserializer"
-        property:
-          - key: enabled
-            value: '{{deserializeHeaders}}'
+        properties:
+          enabled: '{{deserializeHeaders}}'
     from:
       uri: "kafka:{{topic}}"
       parameters: