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-kamelets.git

commit ff0c2aaf028cc08b82bb3a2e03e7992331fc5ecd
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Wed Feb 14 14:04:29 2024 +0100

    Added Spring-RabbitMQ Source Kamelet
    
    Signed-off-by: Andrea Cosentino <anco...@gmail.com>
---
 .../kamelets/spring-rabbitmq-source.kamelet.yaml   | 101 +++++++++++++++++++++
 1 file changed, 101 insertions(+)

diff --git 
a/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-source.kamelet.yaml
 
b/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-source.kamelet.yaml
new file mode 100644
index 00000000..b0af2831
--- /dev/null
+++ 
b/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-source.kamelet.yaml
@@ -0,0 +1,101 @@
+# ---------------------------------------------------------------------------
+# 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.
+# ---------------------------------------------------------------------------
+apiVersion: camel.apache.org/v1alpha1
+kind: Kamelet
+metadata:
+  name: spring-rabbitmq-source
+  annotations:
+    camel.apache.org/kamelet.support.level: "Preview"
+    camel.apache.org/catalog.version: "4.4.0-SNAPSHOT"
+    camel.apache.org/kamelet.icon: 
"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjcxcHgiIGhlaWdodD0iMjcxcHgiIHZpZXdCb3g9Ii03LjUgMCAyNzEgMjcxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj48cGF0aCBkPSJNMjQ1LjQ0IDEwOC4zMDhoLTg1LjA5YTcuNzM4IDcuNzM4IDAgMCAxLTcuNzM1LTcuNzM0di04OC42OEMxNTIuNjE1IDUuMzI3IDE0Ny4yOSAwIDE0MC43MjYgMGgtMzAuMzc1Yy02LjU2OCAwLTExLjg5IDUuMzI3LTExLjg5IDExLjg5NHY4OC4xNDNjMCA0LjU3My0zLjY5NyA4LjI5LTguMjcgOC4zMWwtMjcuODg1LjEzM2MtNC42MT
 [...]
+    camel.apache.org/provider: "Apache Software Foundation"
+    camel.apache.org/kamelet.group: "RabbitMQ"
+    camel.apache.org/kamelet.namespace: "Messaging"
+  labels:
+    camel.apache.org/kamelet.type: "source"
+spec:
+  definition:
+    title: "RabbitMQ Source"
+    description: |-
+      Receive data from a RabbitMQ Broker.
+    required:
+      - addresses
+      - exchangeName
+    type: object
+    properties:
+      host:
+        title: Server Address
+        description: RabbitMQ broker address
+        type: string
+        example: "localhost"
+      port:
+        title: Server Port
+        description: RabbitMQ broker port
+        type: int
+        example: 5672
+      routingKey:
+        title: Routing Key
+        description: The routing key to use when binding a consumer queue to 
the exchange
+        type: string
+      username:
+        title: Username
+        description: The username to access the RabbitMQ server
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      password:
+        title: Password
+        description: The password to access the RabbitMQ server
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
+      exchangeName:
+        title: Exchange name
+        description: The exchange name determines the exchange the queue will 
be bound to
+        type: string
+      queues:
+        title: Queue name
+        description: The queue to receive messages from
+        type: string
+      autoDeclare:
+        title: Auto Declare
+        description: The routing key to use when binding a consumer queue to 
the exchange
+        type: boolean
+        default: false
+  dependencies:
+    - "camel:spring-rabbitmq"
+    - "camel:kamelet"
+  template:
+    beans:
+      - name: connectionFactory
+        type: 
"#class:org.springframework.amqp.rabbit.connection.CachingConnectionFactory"
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          host: '{{host}}'
+          port: '{{port}}'
+    from:
+      uri: "spring-rabbitmq://{{exchangeName}}"
+      parameters:
+        connectionFactory: "#bean:{{connectionFactory}}"
+        routingKey: "{{?routingKey}}"
+        queues: "{{?queue}}"
+        autoDeclare: "{{autoDeclare}}"
+      steps:
+      - to: "kamelet:sink"

Reply via email to