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 11:51:22 UTC

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

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 ebf869f  Added Solr Source kamelet
     new 1a55d3d  Added Username/Password fields in Solr Source Kamelet
     new 0cfe9bf  Sync docs
     new bb0eef7  Added Username/Password fields in Solr Source Kamelet
     new 5b1d1d9  Added Username/Password fields in Solr Source Kamelet
     new 2d07f96  Added Username/Password fields in Solr Source Kamelet
     new 71c3470  Added Username/Password fields in Solr Source Kamelet
     new 59755e5  Added Username/Password fields in Solr Source Kamelet

The 7 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-source.adoc                |  2 ++
 kamelets/solr-source.kamelet.yaml                       | 17 +++++++++++++++++
 .../main/resources/kamelets/solr-source.kamelet.yaml    | 17 +++++++++++++++++
 3 files changed, 36 insertions(+)

[camel-kamelets] 01/07: Added Username/Password fields in Solr 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 1a55d3d53a6ef7bde8791f7fc074eefff1e9c616
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 12:38:56 2021 +0100

    Added Username/Password fields in Solr Source Kamelet
---
 kamelets/solr-source.kamelet.yaml                        | 16 ++++++++++++++++
 .../src/main/resources/kamelets/solr-source.kamelet.yaml | 16 ++++++++++++++++
 2 files changed, 32 insertions(+)

diff --git a/kamelets/solr-source.kamelet.yaml b/kamelets/solr-source.kamelet.yaml
index c9ce707..35817c6 100644
--- a/kamelets/solr-source.kamelet.yaml
+++ b/kamelets/solr-source.kamelet.yaml
@@ -55,6 +55,19 @@ spec:
         title: Query
         description: The query to submit to Solr
         type: string
+      username:
+        title: Username
+        description: Username to connect to Infinispan.
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      password:
+        title: Password
+        description: Password to connect to Infinispan.
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
   types:
     in:
       mediaType: application/json
@@ -80,6 +93,9 @@ spec:
           name: "content-type"
       - to:
           uri: "solr:{{servers}}/solr/{{collection}}"
+          parameters:
+            username: "{{?username}}"
+            password: "{{?password}}"
       - marshal:
           json:
             library: Jackson
diff --git a/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
index c9ce707..35817c6 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
@@ -55,6 +55,19 @@ spec:
         title: Query
         description: The query to submit to Solr
         type: string
+      username:
+        title: Username
+        description: Username to connect to Infinispan.
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      password:
+        title: Password
+        description: Password to connect to Infinispan.
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
   types:
     in:
       mediaType: application/json
@@ -80,6 +93,9 @@ spec:
           name: "content-type"
       - to:
           uri: "solr:{{servers}}/solr/{{collection}}"
+          parameters:
+            username: "{{?username}}"
+            password: "{{?password}}"
       - marshal:
           json:
             library: Jackson

[camel-kamelets] 07/07: Added Username/Password fields in Solr 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 59755e5141b97d73e1d4af6503c7b569f7cb0bac
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 12:41:59 2021 +0100

    Added Username/Password fields in Solr Source Kamelet
---
 .../camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
index 69ddc8a..081de16 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
@@ -68,6 +68,7 @@ spec:
         format: password
         x-descriptors:
         - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
   types:
     in:
       mediaType: application/json

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

    Added Username/Password fields in Solr Source Kamelet
---
 kamelets/solr-source.kamelet.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kamelets/solr-source.kamelet.yaml b/kamelets/solr-source.kamelet.yaml
index 35817c6..69ddc8a 100644
--- a/kamelets/solr-source.kamelet.yaml
+++ b/kamelets/solr-source.kamelet.yaml
@@ -57,13 +57,13 @@ spec:
         type: string
       username:
         title: Username
-        description: Username to connect to Infinispan.
+        description: Username to connect to Solr.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: Password to connect to Infinispan.
+        description: Password to connect to Solr.
         type: string
         format: password
         x-descriptors:

[camel-kamelets] 04/07: Added Username/Password fields in Solr 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 5b1d1d99da0d81937586d68e665c833133885eb0
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 12:40:42 2021 +0100

    Added Username/Password fields in Solr Source Kamelet
---
 .../src/main/resources/kamelets/solr-source.kamelet.yaml              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
index 35817c6..69ddc8a 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/solr-source.kamelet.yaml
@@ -57,13 +57,13 @@ spec:
         type: string
       username:
         title: Username
-        description: Username to connect to Infinispan.
+        description: Username to connect to Solr.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: Password to connect to Infinispan.
+        description: Password to connect to Solr.
         type: string
         format: password
         x-descriptors:

[camel-kamelets] 05/07: Added Username/Password fields in Solr 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 2d07f963874db5145ec961f44ff575cf28aa5598
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 12:40:59 2021 +0100

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

diff --git a/docs/modules/ROOT/pages/solr-source.adoc b/docs/modules/ROOT/pages/solr-source.adoc
index 36f65ad..aac2894 100644
--- a/docs/modules/ROOT/pages/solr-source.adoc
+++ b/docs/modules/ROOT/pages/solr-source.adoc
@@ -18,8 +18,8 @@ The following table summarizes the configuration options available for the `solr
 | *period {empty}* *| Period between Polls| The interval between fetches to the Solr collection| integer| `10000`| 
 | *query {empty}* *| Query| The query to submit to Solr| string| | 
 | *servers {empty}* *| Servers| Comma separated list of Solr Servers and ports| string| | 
-| password| Password| Password to connect to Infinispan.| string| | 
-| username| Username| Username to connect to Infinispan.| string| | 
+| 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.

[camel-kamelets] 02/07: Sync docs

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 0cfe9bfdc48f8431cf4168e1a01de29f314bf8c6
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 12:39:24 2021 +0100

    Sync docs
---
 docs/modules/ROOT/pages/solr-source.adoc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docs/modules/ROOT/pages/solr-source.adoc b/docs/modules/ROOT/pages/solr-source.adoc
index 85e2252..36f65ad 100644
--- a/docs/modules/ROOT/pages/solr-source.adoc
+++ b/docs/modules/ROOT/pages/solr-source.adoc
@@ -18,6 +18,8 @@ The following table summarizes the configuration options available for the `solr
 | *period {empty}* *| Period between Polls| The interval between fetches to the Solr collection| integer| `10000`| 
 | *query {empty}* *| Query| The query to submit to Solr| string| | 
 | *servers {empty}* *| Servers| Comma separated list of Solr Servers and ports| string| | 
+| password| Password| Password to connect to Infinispan.| string| | 
+| username| Username| Username to connect to Infinispan.| string| | 
 |===
 
 NOTE: Fields marked with an asterisk ({empty}*) are mandatory.

[camel-kamelets] 06/07: Added Username/Password fields in Solr 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 71c3470ff7822d3039ca644c589de015110f3add
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 6 12:41:40 2021 +0100

    Added Username/Password fields in Solr Source Kamelet
---
 kamelets/solr-source.kamelet.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kamelets/solr-source.kamelet.yaml b/kamelets/solr-source.kamelet.yaml
index 69ddc8a..081de16 100644
--- a/kamelets/solr-source.kamelet.yaml
+++ b/kamelets/solr-source.kamelet.yaml
@@ -68,6 +68,7 @@ spec:
         format: password
         x-descriptors:
         - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
   types:
     in:
       mediaType: application/json