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 2021/12/06 12:14:13 UTC

[camel-kamelets] branch main updated (59755e5 -> d3af0c4)

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 59755e5  Added Username/Password fields in Solr Source Kamelet
     new 77307b7  Added Username/Password fields in Solr Sink Kamelet
     new 6efc485  Added Username/Password fields in Solr Sink Kamelet
     new d3af0c4  Added Username/Password fields in Solr Sink 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/pages/solr-sink.adoc                   |  2 ++
 kamelets/solr-sink.kamelet.yaml                          | 16 ++++++++++++++++
 .../src/main/resources/kamelets/solr-sink.kamelet.yaml   | 16 ++++++++++++++++
 3 files changed, 34 insertions(+)

[camel-kamelets] 02/03: Added Username/Password fields in Solr Sink 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 6efc4854303b2805ce756e49c22e789b279b9646
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 13:04:04 2021 +0100

    Added Username/Password fields in Solr Sink Kamelet
---
 .../src/main/resources/kamelets/solr-sink.kamelet.yaml   | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/solr-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/solr-sink.kamelet.yaml
index c4f2c90..f27387b 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/solr-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/solr-sink.kamelet.yaml
@@ -51,6 +51,20 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+      username:
+        title: Username
+        description: Username to connect to Solr.
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      password:
+        title: Password
+        description: Password to connect to Solr.
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
   types:
     in:
       mediaType: application/json
@@ -75,3 +89,5 @@ spec:
           uri: "solr:{{servers}}/solr/{{collection}}"
           parameters:
             autocommit: "{{autocommit}}"
+            username: "{{?username}}"
+            password: "{{?password}}"

[camel-kamelets] 01/03: Added Username/Password fields in Solr Sink 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 77307b7f84a443cbbf5130614a07d5da3c62b995
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 13:03:12 2021 +0100

    Added Username/Password fields in Solr Sink Kamelet
---
 kamelets/solr-sink.kamelet.yaml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/kamelets/solr-sink.kamelet.yaml b/kamelets/solr-sink.kamelet.yaml
index c4f2c90..f27387b 100644
--- a/kamelets/solr-sink.kamelet.yaml
+++ b/kamelets/solr-sink.kamelet.yaml
@@ -51,6 +51,20 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+      username:
+        title: Username
+        description: Username to connect to Solr.
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      password:
+        title: Password
+        description: Password to connect to Solr.
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
   types:
     in:
       mediaType: application/json
@@ -75,3 +89,5 @@ spec:
           uri: "solr:{{servers}}/solr/{{collection}}"
           parameters:
             autocommit: "{{autocommit}}"
+            username: "{{?username}}"
+            password: "{{?password}}"

[camel-kamelets] 03/03: Added Username/Password fields in Solr Sink 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 d3af0c491efc286b0afeac4d396a6514b2407f64
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 13:04:47 2021 +0100

    Added Username/Password fields in Solr Sink Kamelet
---
 docs/modules/ROOT/pages/solr-sink.adoc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docs/modules/ROOT/pages/solr-sink.adoc b/docs/modules/ROOT/pages/solr-sink.adoc
index fec0008..99410e8 100644
--- a/docs/modules/ROOT/pages/solr-sink.adoc
+++ b/docs/modules/ROOT/pages/solr-sink.adoc
@@ -17,6 +17,8 @@ The following table summarizes the configuration options available for the `solr
 | *collection {empty}* *| Collection| Solr Collection name| string| | 
 | *servers {empty}* *| Servers| Comma separated list of Solr Servers and ports| string| | 
 | autocommit| Autocommit| If autocommit should be enabled or not| boolean| `false`| 
+| password| Password| Password to connect to Solr.| string| | 
+| username| Username| Username to connect to Solr.| string| | 
 |===
 
 NOTE: Fields marked with an asterisk ({empty}*) are mandatory.