This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch servicebus-source in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 5ab0195bd680531108a5f6c376a23fc1338a7181 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Mar 8 15:11:01 2022 +0100 Add Azure Servicebus Source Kamelet --- kamelets/azure-servicebus-source.kamelet.yaml | 63 +++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/kamelets/azure-servicebus-source.kamelet.yaml b/kamelets/azure-servicebus-source.kamelet.yaml new file mode 100644 index 0000000..02f6e2a --- /dev/null +++ b/kamelets/azure-servicebus-source.kamelet.yaml @@ -0,0 +1,63 @@ +# --------------------------------------------------------------------------- +# 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: azure-servicebus-source + annotations: + camel.apache.org/kamelet.support.level: "Preview" + camel.apache.org/catalog.version: "main-SNAPSHOT" + camel.apache.org/kamelet.icon: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgOTEgODEiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjx1c2UgeGxpbms6aHJlZj0iI0EiIHg9Ii41IiB5PSIuNSIvPjxzeW1ib2wgaWQ9IkEiIG92ZXJmbG93PSJ2aXNpYmxlIj48cGF0aCBkPSJNNjcuNTU4IDBIMjIuNDQxTDAgNDBsMjIuNDQxIDQwaDQ1LjExN0w5MCA0MCA2Ny [...] + camel.apache.org/provider: "Apache Software Foundation" + camel.apache.org/kamelet.group: "Azure Servicebus Blob" + labels: + camel.apache.org/kamelet.type: "source" +spec: + definition: + title: "Azure Servicebus Source" + description: |- + Consume Messages from Azure Servicebus. + required: + - topicOrQueueName + - connectionString + type: object + properties: + topicOrQueueName: + title: Topic Or Queue Name + description: Topic Or Queue Name for the Azure Servicebus instance + type: String + connectionString: + title: Connection String + description: Connection String for Azure Servicebus instance + type: string + format: password + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:password + - urn:camel:group:credentials + dependencies: + - "camel:azure-servicebus" + - "camel:kamelet" + - "camel:core" + template: + from: + uri: "azure-servicebus:{{topicOrQueueName}}" + parameters: + connectionString: "{{connectionString}}" + steps: + - to: "kamelet:sink" +
