This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch kafka-ssl in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit c437ca341fd60e660e6bc63f2b8e6d6bb2e33789 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Jan 9 13:49:48 2025 +0100 Kafka SSL Source Kamelet - include missing sslTruststorePassword Signed-off-by: Andrea Cosentino <[email protected]> --- kamelets/kafka-ssl-source.kamelet.yaml | 8 ++++++++ .../src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/kamelets/kafka-ssl-source.kamelet.yaml b/kamelets/kafka-ssl-source.kamelet.yaml index 0ab08a39..88b8132e 100644 --- a/kamelets/kafka-ssl-source.kamelet.yaml +++ b/kamelets/kafka-ssl-source.kamelet.yaml @@ -133,6 +133,13 @@ spec: description: The location of the trust store file. title: SSL Truststore Location type: string + sslTruststorePassword: + description: The store password for the trust store file. + title: SSL Truststore Password + type: string + format: password + x-descriptors: + - urn:camel:group:credentials sslEnabledProtocols: description: The list of protocols enabled for SSL connections. TLSv1.2, TLSv1.1 and TLSv1 are enabled by default. title: SSL Enabled Protocols @@ -163,6 +170,7 @@ spec: sslKeyPassword: '{{sslKeyPassword}}' sslKeystorePassword: '{{sslKeystorePassword}}' sslTruststoreLocation: '{{sslTruststoreLocation}}' + sslTruststorePassword: '{{sslTruststorePassword}}' sslProtocol: '{{sslProtocol}}' sslEnabledProtocols: '{{sslEnabledProtocols}}' sslEndpointAlgorithm: '{{sslEndpointAlgorithm}}' diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml index 0ab08a39..88b8132e 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-ssl-source.kamelet.yaml @@ -133,6 +133,13 @@ spec: description: The location of the trust store file. title: SSL Truststore Location type: string + sslTruststorePassword: + description: The store password for the trust store file. + title: SSL Truststore Password + type: string + format: password + x-descriptors: + - urn:camel:group:credentials sslEnabledProtocols: description: The list of protocols enabled for SSL connections. TLSv1.2, TLSv1.1 and TLSv1 are enabled by default. title: SSL Enabled Protocols @@ -163,6 +170,7 @@ spec: sslKeyPassword: '{{sslKeyPassword}}' sslKeystorePassword: '{{sslKeystorePassword}}' sslTruststoreLocation: '{{sslTruststoreLocation}}' + sslTruststorePassword: '{{sslTruststorePassword}}' sslProtocol: '{{sslProtocol}}' sslEnabledProtocols: '{{sslEnabledProtocols}}' sslEndpointAlgorithm: '{{sslEndpointAlgorithm}}'
