This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 704 in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 93ff54eb35c019db7b078082b2bdef6912fd8ba4 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Feb 15 10:03:57 2022 +0100 make elasticsearch-index-sink user and password properties optional with "?" syntax --- .../src/main/resources/kamelets/elasticsearch-index-sink.kamelet.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 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 f35c137..6a403b0 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 @@ -99,8 +99,8 @@ spec: - name: local-es type: "#class:org.apache.camel.component.elasticsearch.ElasticsearchComponent" properties: - user: "{{user:dummy}}" - password: "{{password:dummy}}" + user: "{{?user}}" + password: "{{?password}}" from: uri: kamelet:source steps:
