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 2022/03/15 13:29:25 UTC

[camel-kamelets] branch main updated (c7668cb -> e469410)

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


    from c7668cb  Upgrade Redshift Jdbc 4.2 to version 2.1.0.4
     new 721c204  Added Mqtt5 v5 Source Kamelet
     new b05b959  Added Mqtt5 v5 Source Kamelet
     new e469410  Added Mqtt5 v5 Source Kamelet

The 3 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:
 docs/modules/ROOT/nav.adoc                               |  1 +
 .../mqtt5-source.kamelet.yaml                            | 16 ++++++++--------
 ...qtt-source.kamelet.yaml => mqtt5-source.kamelet.yaml} | 16 ++++++++--------
 3 files changed, 17 insertions(+), 16 deletions(-)
 copy library/camel-kamelets/src/main/resources/kamelets/mqtt-source.kamelet.yaml => kamelets/mqtt5-source.kamelet.yaml (94%)
 copy library/camel-kamelets/src/main/resources/kamelets/{mqtt-source.kamelet.yaml => mqtt5-source.kamelet.yaml} (94%)

[camel-kamelets] 01/03: Added Mqtt5 v5 Source Kamelet

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

commit 721c204c0e1d88d90d4240ad422e4a67a168ccac
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 15 14:13:21 2022 +0100

    Added Mqtt5 v5 Source Kamelet
---
 kamelets/mqtt5-source.kamelet.yaml | 80 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)

diff --git a/kamelets/mqtt5-source.kamelet.yaml b/kamelets/mqtt5-source.kamelet.yaml
new file mode 100644
index 0000000..68ebf76
--- /dev/null
+++ b/kamelets/mqtt5-source.kamelet.yaml
@@ -0,0 +1,80 @@
+# ---------------------------------------------------------------------------
+# 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: mqtt5-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,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI0LjMuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMiIgYmFzZVByb2ZpbGU9InRpbnkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIKCSB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMjAgMzIwIiBvdmVyZmxvdz0idmlzaWJsZSIgeG1sOnNwYWNlPSJwcm [...]
+    camel.apache.org/provider: "Apache Software Foundation"
+    camel.apache.org/kamelet.group: "MQTT 5"
+  labels:
+    camel.apache.org/kamelet.type: "source"
+spec:
+  definition:
+    title: "MQTT 5 Source"
+    description: |-
+      Allows receiving messages from any endpoint that supports the MQTT v5 protocol, such as a message broker.
+    required:
+    - topic
+    - brokerUrl
+    type: object
+    properties:
+      topic:
+        title: Topic
+        description: The topic to subscribe to
+        type: string
+        example: "mytopic"
+      brokerUrl:
+        title: Broker URL
+        description: The URL of the broker where to establish the connection
+        type: string
+        example: "tcp://mosquitto:1883"
+      clientId:
+        title: Client ID
+        description: The client ID to use when connecting to the resource
+        type: string
+        default: "mqtt-source"
+      username:
+        title: Username
+        description: Username to use when connecting to the MQTT v5 compliant broker
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      password:
+        title: Password
+        description: Password to use when connecting to the MQTT v5 compliant broker
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
+  dependencies:
+    - "camel:paho-mqtt5"
+    - "camel:kamelet"
+  template:
+    from:
+      uri: paho-mqtt5:{{topic}}
+      parameters:
+        brokerUrl: "{{brokerUrl}}"
+        clientId: "{{clientId}}"
+        userName: "{{?username}}"
+        password: "{{?password}}"
+      steps:
+      - to: kamelet:sink

[camel-kamelets] 02/03: Added Mqtt5 v5 Source Kamelet

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

commit b05b9592ef0c0d1ef9d3c1ee57cd70a5928b8b80
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 15 14:15:32 2022 +0100

    Added Mqtt5 v5 Source Kamelet
---
 .../resources/kamelets/mqtt5-source.kamelet.yaml   | 80 ++++++++++++++++++++++
 1 file changed, 80 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/mqtt5-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mqtt5-source.kamelet.yaml
new file mode 100644
index 0000000..68ebf76
--- /dev/null
+++ b/library/camel-kamelets/src/main/resources/kamelets/mqtt5-source.kamelet.yaml
@@ -0,0 +1,80 @@
+# ---------------------------------------------------------------------------
+# 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: mqtt5-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,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI0LjMuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMiIgYmFzZVByb2ZpbGU9InRpbnkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIKCSB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMjAgMzIwIiBvdmVyZmxvdz0idmlzaWJsZSIgeG1sOnNwYWNlPSJwcm [...]
+    camel.apache.org/provider: "Apache Software Foundation"
+    camel.apache.org/kamelet.group: "MQTT 5"
+  labels:
+    camel.apache.org/kamelet.type: "source"
+spec:
+  definition:
+    title: "MQTT 5 Source"
+    description: |-
+      Allows receiving messages from any endpoint that supports the MQTT v5 protocol, such as a message broker.
+    required:
+    - topic
+    - brokerUrl
+    type: object
+    properties:
+      topic:
+        title: Topic
+        description: The topic to subscribe to
+        type: string
+        example: "mytopic"
+      brokerUrl:
+        title: Broker URL
+        description: The URL of the broker where to establish the connection
+        type: string
+        example: "tcp://mosquitto:1883"
+      clientId:
+        title: Client ID
+        description: The client ID to use when connecting to the resource
+        type: string
+        default: "mqtt-source"
+      username:
+        title: Username
+        description: Username to use when connecting to the MQTT v5 compliant broker
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      password:
+        title: Password
+        description: Password to use when connecting to the MQTT v5 compliant broker
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
+  dependencies:
+    - "camel:paho-mqtt5"
+    - "camel:kamelet"
+  template:
+    from:
+      uri: paho-mqtt5:{{topic}}
+      parameters:
+        brokerUrl: "{{brokerUrl}}"
+        clientId: "{{clientId}}"
+        userName: "{{?username}}"
+        password: "{{?password}}"
+      steps:
+      - to: kamelet:sink

[camel-kamelets] 03/03: Added Mqtt5 v5 Source Kamelet

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

commit e4694104bed89d456d11ad2bb16a1055f73b11e9
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 15 14:16:20 2022 +0100

    Added Mqtt5 v5 Source Kamelet
---
 docs/modules/ROOT/nav.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc
index 3f5c24b..14f8ca6 100644
--- a/docs/modules/ROOT/nav.adoc
+++ b/docs/modules/ROOT/nav.adoc
@@ -117,6 +117,7 @@
 * xref:mongodb-source.adoc[]
 * xref:mqtt-sink.adoc[]
 * xref:mqtt-source.adoc[]
+* xref:mqtt5-source.adoc[]
 * xref:mustache-template-action.adoc[]
 * xref:mvel-template-action.adoc[]
 * xref:mysql-sink.adoc[]