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:05:32 UTC

[camel-kamelets] branch solr-sink-creds created (now 6b1522e)

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

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


      at 6b1522e  Added Username/Password fields in Solr Sink Kamelet

This branch includes the following new commits:

     new 6e436c7  Added Username/Password fields in Solr Sink Kamelet
     new 59099c8  Added Username/Password fields in Solr Sink Kamelet
     new 6b1522e  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.


[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 solr-sink-creds
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 59099c81a53080976e6ac45e7a2befb44c8eb35a
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 solr-sink-creds
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 6e436c7d7186ad5f93006507ee72b88843dc4300
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 solr-sink-creds
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 6b1522eb8bd6620d4ca1c0121dd5e9ce6c550026
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.