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/07/14 15:13:34 UTC

[camel-kamelets] branch main updated (3e284d9 -> 5109e6a)

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 3e284d9  Update camel-k to 1.5.0
     new 1cfab28  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
     new febf7da  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
     new c7c513d  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
     new e1a8617  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
     new 9a618eb  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
     new e734d5e  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
     new 50ffb0d  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
     new bfb1b4d  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
     new 5109e6a  ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

The 9 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:
 .../ROOT/pages/elasticsearch-index-sink.adoc       | 11 ++-
 docs/modules/ROOT/pages/infinispan-source.adoc     |  7 +-
 elasticsearch-index-sink.kamelet.yaml              | 94 ++++++++++++----------
 .../kamelets/elasticsearch-index-sink.kamelet.yaml | 94 ++++++++++++----------
 4 files changed, 114 insertions(+), 92 deletions(-)

[camel-kamelets] 07/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 50ffb0daf302bf3445ede494104ec57742770ffe
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 17:06:12 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 elasticsearch-index-sink.kamelet.yaml | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/elasticsearch-index-sink.kamelet.yaml b/elasticsearch-index-sink.kamelet.yaml
index e4be13c..6fc368e 100644
--- a/elasticsearch-index-sink.kamelet.yaml
+++ b/elasticsearch-index-sink.kamelet.yaml
@@ -62,12 +62,6 @@ spec:
         description: Comma separated list with ip:port formatted remote transport addresses to use.
         type: string
         example: quickstart-es-http:9200
-      indexName:
-        title: Index in ElasticSearch
-        description: The name of the index to act against.
-        type: string
-        example: data
-        default: 'NONE'
       clusterName:
         title: ElasticSearch Cluster Name
         description: Name of the cluster.
@@ -126,7 +120,6 @@ spec:
           uri: "kamelet-reify:elasticsearch-rest:{{clusterName}}"
           parameters:
             operation: "INDEX"
-            indexName: "{{indexName}}"
             hostAddresses: "{{hostAddresses}}"
             enableSSL: "{{enableSSL}}"
             user: "{{?user}}"

[camel-kamelets] 02/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 febf7da6e9fece4c6ccb8c8d5cb4c102c6a24cd7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 16:54:48 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 .../kamelets/elasticsearch-index-sink.kamelet.yaml | 84 ++++++++++++++--------
 1 file changed, 53 insertions(+), 31 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
index 2482537..04a793d 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
@@ -27,12 +27,13 @@ spec:
 
       Input data must have JSON format according to the index used.
 
-      If the *indexId* parameter is set, that value will be used as the document ID on ElasticSearch.
+      - `indexId` / `ce-indexId`: as the index ID for Elasticsearch
 
-      If the *indexId* parameter is not set and the source of the kamelet binding is a Kafka broker, it will take the kafka topic, partition and offset of the
-      element to generate an automatic ID that warrantees that this element is processed only once.
+      If the header won't be set the exchange ID will be used as index.
 
-      If the *indexName* parameter is not set and the source of the kamelet binding is a Kafka broker, it will take the kafka topic as the indexName.
+      - `indexName` / `ce-indexName`: as the index Name for Elasticsearch
+
+      If the header won't be set the exchange ID will be used as index name.
     required:
       - clusterName
       - hostAddresses
@@ -46,6 +47,9 @@ spec:
         title: Password
         description: Password to connect to ElasticSearch.
         type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
       enableSSL:
         title: Enable SSL
         description: Do we want to connect using SSL?
@@ -89,30 +93,48 @@ spec:
     from:
       uri: kamelet:source
       steps:
-        - choice:
-            when:
-              - simple: "'{{indexId}}' == 'NONE' && ${header[kafka.TOPIC]} != null"
-                steps:
-                  - set-header:
-                      name: "indexId"
-                      simple: "${header[kafka.TOPIC]}${header[kafka.PARTITION]}${header[kafka.OFFSET]}"
-              - simple: "'{{indexId}}' != 'NONE'"
-                steps:
-                  - set-header:
-                      name: "indexId"
-                      simple: "{{indexId}}"
-        - choice:
-            when:
-              - simple: "'{{indexName}}' == 'NONE'"
-                steps:
-                  - set-property:
-                      name: esIndexName
-                      simple: "${header[kafka.TOPIC]}"
-            otherwise:
-              steps:
-                - set-property:
-                    name: esIndexName
-                    simple: "{{indexName}}"
-        - to-d: "kamelet-reify:elasticsearch-rest:{{clusterName}}?hostAddresses=RAW({{hostAddresses}})&operation=INDEX&indexName=${exchangeProperty.esIndexName}&enableSSL={{enableSSL}}&user={{user}}&password={{password}}"
-        - marshal:
-            json: { }
+      - choice:
+          when:
+          - simple: "${header[indexId]}"
+            steps:
+            - set-header:
+                name: "indexId"
+                simple: "${header[indexId]}"
+          - simple: "${header[ce-indexId]}"
+            steps:
+            - set-header:
+                name: "indexId"
+                simple: "${header[ce-indexId]}"
+          otherwise:
+            steps:
+            - set-header:
+                name: "indexId"
+                simple: "${exchangeId}"
+      - choice:
+          when:
+          - simple: "${header[indexName]}"
+            steps:
+            - set-header:
+                name: "indexName"
+                simple: "${header[indexName]}"
+          - simple: "${header[ce-indexName]}"
+            steps:
+            - set-header:
+                name: "indexName"
+                simple: "${header[ce-indexName]}"
+          otherwise:
+            steps:
+            - set-header:
+                name: "indexName"
+                simple: "${exchangeId}"
+      - to:
+          uri: "kamelet-reify:elasticsearch-rest:{{clusterName}}"
+          parameters:
+            operation: "INDEX"
+            indexName: "{{indexName}}"
+            hostAddresses: "{{hostAddresses}}"
+            enableSSL: "{{enableSSL}}"
+            user: "{{?user}}"
+            password: "{{?password}}"
+      - marshal:
+          json: { }

[camel-kamelets] 01/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 1cfab28ce7c66628b2f9cebcdf79bebf4620458d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 16:53:07 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 elasticsearch-index-sink.kamelet.yaml | 84 ++++++++++++++++++++++-------------
 1 file changed, 53 insertions(+), 31 deletions(-)

diff --git a/elasticsearch-index-sink.kamelet.yaml b/elasticsearch-index-sink.kamelet.yaml
index 2482537..04a793d 100644
--- a/elasticsearch-index-sink.kamelet.yaml
+++ b/elasticsearch-index-sink.kamelet.yaml
@@ -27,12 +27,13 @@ spec:
 
       Input data must have JSON format according to the index used.
 
-      If the *indexId* parameter is set, that value will be used as the document ID on ElasticSearch.
+      - `indexId` / `ce-indexId`: as the index ID for Elasticsearch
 
-      If the *indexId* parameter is not set and the source of the kamelet binding is a Kafka broker, it will take the kafka topic, partition and offset of the
-      element to generate an automatic ID that warrantees that this element is processed only once.
+      If the header won't be set the exchange ID will be used as index.
 
-      If the *indexName* parameter is not set and the source of the kamelet binding is a Kafka broker, it will take the kafka topic as the indexName.
+      - `indexName` / `ce-indexName`: as the index Name for Elasticsearch
+
+      If the header won't be set the exchange ID will be used as index name.
     required:
       - clusterName
       - hostAddresses
@@ -46,6 +47,9 @@ spec:
         title: Password
         description: Password to connect to ElasticSearch.
         type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
       enableSSL:
         title: Enable SSL
         description: Do we want to connect using SSL?
@@ -89,30 +93,48 @@ spec:
     from:
       uri: kamelet:source
       steps:
-        - choice:
-            when:
-              - simple: "'{{indexId}}' == 'NONE' && ${header[kafka.TOPIC]} != null"
-                steps:
-                  - set-header:
-                      name: "indexId"
-                      simple: "${header[kafka.TOPIC]}${header[kafka.PARTITION]}${header[kafka.OFFSET]}"
-              - simple: "'{{indexId}}' != 'NONE'"
-                steps:
-                  - set-header:
-                      name: "indexId"
-                      simple: "{{indexId}}"
-        - choice:
-            when:
-              - simple: "'{{indexName}}' == 'NONE'"
-                steps:
-                  - set-property:
-                      name: esIndexName
-                      simple: "${header[kafka.TOPIC]}"
-            otherwise:
-              steps:
-                - set-property:
-                    name: esIndexName
-                    simple: "{{indexName}}"
-        - to-d: "kamelet-reify:elasticsearch-rest:{{clusterName}}?hostAddresses=RAW({{hostAddresses}})&operation=INDEX&indexName=${exchangeProperty.esIndexName}&enableSSL={{enableSSL}}&user={{user}}&password={{password}}"
-        - marshal:
-            json: { }
+      - choice:
+          when:
+          - simple: "${header[indexId]}"
+            steps:
+            - set-header:
+                name: "indexId"
+                simple: "${header[indexId]}"
+          - simple: "${header[ce-indexId]}"
+            steps:
+            - set-header:
+                name: "indexId"
+                simple: "${header[ce-indexId]}"
+          otherwise:
+            steps:
+            - set-header:
+                name: "indexId"
+                simple: "${exchangeId}"
+      - choice:
+          when:
+          - simple: "${header[indexName]}"
+            steps:
+            - set-header:
+                name: "indexName"
+                simple: "${header[indexName]}"
+          - simple: "${header[ce-indexName]}"
+            steps:
+            - set-header:
+                name: "indexName"
+                simple: "${header[ce-indexName]}"
+          otherwise:
+            steps:
+            - set-header:
+                name: "indexName"
+                simple: "${exchangeId}"
+      - to:
+          uri: "kamelet-reify:elasticsearch-rest:{{clusterName}}"
+          parameters:
+            operation: "INDEX"
+            indexName: "{{indexName}}"
+            hostAddresses: "{{hostAddresses}}"
+            enableSSL: "{{enableSSL}}"
+            user: "{{?user}}"
+            password: "{{?password}}"
+      - marshal:
+          json: { }

[camel-kamelets] 06/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 e734d5e1cb1b8b54e69b235e8daadc0ef9893865
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 16:59:01 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 docs/modules/ROOT/pages/elasticsearch-index-sink.adoc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc b/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
index b95e3ed..96c6407 100644
--- a/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
+++ b/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
@@ -26,7 +26,6 @@ The following table summarizes the configuration options available for the `elas
 | *clusterName {empty}* *| ElasticSearch Cluster Name| Name of the cluster.| string| | `"quickstart"`
 | *hostAddresses {empty}* *| Host Addresses| Comma separated list with ip:port formatted remote transport addresses to use.| string| | `"quickstart-es-http:9200"`
 | enableSSL| Enable SSL| Do we want to connect using SSL?| boolean| `true`| 
-| indexId| Index ID| None| string| `"NONE"`| 
 | indexName| Index in ElasticSearch| The name of the index to act against.| string| `"NONE"`| `"data"`
 | password| Password| Password to connect to ElasticSearch.| string| | 
 | user| Username| Username to connect to ElasticSearch.| string| | 

[camel-kamelets] 08/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 bfb1b4dc088ecc60523226b8cf2a482c3358f572
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 17:06:37 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 .../main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml  | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
index e4be13c..6fc368e 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
@@ -62,12 +62,6 @@ spec:
         description: Comma separated list with ip:port formatted remote transport addresses to use.
         type: string
         example: quickstart-es-http:9200
-      indexName:
-        title: Index in ElasticSearch
-        description: The name of the index to act against.
-        type: string
-        example: data
-        default: 'NONE'
       clusterName:
         title: ElasticSearch Cluster Name
         description: Name of the cluster.
@@ -126,7 +120,6 @@ spec:
           uri: "kamelet-reify:elasticsearch-rest:{{clusterName}}"
           parameters:
             operation: "INDEX"
-            indexName: "{{indexName}}"
             hostAddresses: "{{hostAddresses}}"
             enableSSL: "{{enableSSL}}"
             user: "{{?user}}"

[camel-kamelets] 05/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 9a618eb4228e7ff4215b9cb9043a8ad68c8922a2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 16:58:30 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 .../main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml    | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
index 04a793d..e4be13c 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml
@@ -73,11 +73,6 @@ spec:
         description: Name of the cluster.
         type: string
         example: quickstart
-      indexId:
-        title: Index ID
-        description: None
-        type: string
-        default: 'NONE'
   types:
     out:
       mediaType: application/json

[camel-kamelets] 03/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 c7c513debed880c227e4415b4ab32cde4cdba83e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 16:55:32 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 docs/modules/ROOT/pages/elasticsearch-index-sink.adoc | 9 +++++----
 docs/modules/ROOT/pages/infinispan-source.adoc        | 7 +++++--
 2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc b/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
index 8597c30..b95e3ed 100644
--- a/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
+++ b/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
@@ -9,12 +9,13 @@ This sink stores documents into ElasticSearch.
 
 Input data must have JSON format according to the index used.
 
-If the *indexId* parameter is set, that value will be used as the document ID on ElasticSearch.
+- `indexId` / `ce-indexId`: as the index ID for Elasticsearch
 
-If the *indexId* parameter is not set and the source of the kamelet binding is a Kafka broker, it will take the kafka topic, partition and offset of the
-element to generate an automatic ID that warrantees that this element is processed only once.
+If the header won't be set the exchange ID will be used as index.
 
-If the *indexName* parameter is not set and the source of the kamelet binding is a Kafka broker, it will take the kafka topic as the indexName.
+- `indexName` / `ce-indexName`: as the index Name for Elasticsearch
+
+If the header won't be set the exchange ID will be used as index name.
 
 == Configuration Options
 
diff --git a/docs/modules/ROOT/pages/infinispan-source.adoc b/docs/modules/ROOT/pages/infinispan-source.adoc
index 101cd7e..98e13c8 100644
--- a/docs/modules/ROOT/pages/infinispan-source.adoc
+++ b/docs/modules/ROOT/pages/infinispan-source.adoc
@@ -13,6 +13,7 @@ The following table summarizes the configuration options available for the `infi
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
+| *cacheName {empty}* *| Cache Name| The name of the Infinispan cache to use| String| | 
 | *hosts {empty}* *| Hosts| Specifies the host of the cache on Infinispan instance| String| | 
 | *password {empty}* *| Password| Password to connect to Infinispan.| string| | 
 | *username {empty}* *| Username| Username to connect to Infinispan.| string| | 
@@ -47,6 +48,7 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: infinispan-source
     properties:
+      cacheName: "The Cache Name"
       hosts: "The Hosts"
       password: "The Password"
       username: "The Username"
@@ -75,7 +77,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind infinispan-source -p "source.hosts=The Hosts" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
+kamel bind infinispan-source -p "source.cacheName=The Cache Name" -p "source.hosts=The Hosts" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -98,6 +100,7 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: infinispan-source
     properties:
+      cacheName: "The Cache Name"
       hosts: "The Hosts"
       password: "The Password"
       username: "The Username"
@@ -127,7 +130,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind infinispan-source -p "source.hosts=The Hosts" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
+kamel bind infinispan-source -p "source.cacheName=The Cache Name" -p "source.hosts=The Hosts" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.

[camel-kamelets] 09/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 5109e6a2cda7185e2f7cbe94e99686c2265b2864
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 17:07:19 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 docs/modules/ROOT/pages/elasticsearch-index-sink.adoc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc b/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
index 96c6407..da5977a 100644
--- a/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
+++ b/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc
@@ -26,7 +26,6 @@ The following table summarizes the configuration options available for the `elas
 | *clusterName {empty}* *| ElasticSearch Cluster Name| Name of the cluster.| string| | `"quickstart"`
 | *hostAddresses {empty}* *| Host Addresses| Comma separated list with ip:port formatted remote transport addresses to use.| string| | `"quickstart-es-http:9200"`
 | enableSSL| Enable SSL| Do we want to connect using SSL?| boolean| `true`| 
-| indexName| Index in ElasticSearch| The name of the index to act against.| string| `"NONE"`| `"data"`
 | password| Password| Password to connect to ElasticSearch.| string| | 
 | user| Username| Username to connect to ElasticSearch.| string| | 
 |===

[camel-kamelets] 04/09: ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings

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 e1a86175bda49de17fad9b2ffc61459c01756f9c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jul 14 16:58:02 2021 +0200

    ElasticSearch Index Sink: Fixed user/password as optional and fixed the headers settings
---
 elasticsearch-index-sink.kamelet.yaml | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/elasticsearch-index-sink.kamelet.yaml b/elasticsearch-index-sink.kamelet.yaml
index 04a793d..e4be13c 100644
--- a/elasticsearch-index-sink.kamelet.yaml
+++ b/elasticsearch-index-sink.kamelet.yaml
@@ -73,11 +73,6 @@ spec:
         description: Name of the cluster.
         type: string
         example: quickstart
-      indexId:
-        title: Index ID
-        description: None
-        type: string
-        default: 'NONE'
   types:
     out:
       mediaType: application/json