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


The following commit(s) were added to refs/heads/main by this push:
     new dfd4fc2c Introduce Truststore password configuration (#2202)
dfd4fc2c is described below

commit dfd4fc2c641a44ccb18af8740f392deb46be7d56
Author: XLAQO <[email protected]>
AuthorDate: Wed Sep 18 17:34:20 2024 +0200

    Introduce Truststore password configuration (#2202)
    
    Co-authored-by: Lukas Batora <[email protected]>
---
 kamelets/kafka-ssl-sink.kamelet.yaml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/kamelets/kafka-ssl-sink.kamelet.yaml 
b/kamelets/kafka-ssl-sink.kamelet.yaml
index fb2e2b22..9693f996 100644
--- a/kamelets/kafka-ssl-sink.kamelet.yaml
+++ b/kamelets/kafka-ssl-sink.kamelet.yaml
@@ -45,6 +45,7 @@ spec:
       - sslKeystoreLocation
       - sslKeystorePassword
       - sslTruststoreLocation
+      - sslTruststorePassword
       - sslKeyPassword
     properties:
       bootstrapServers:
@@ -92,6 +93,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
       sslKeyPassword:
         description: The password of the private key in the key store file.
         title: SSL Key Password
@@ -133,6 +141,7 @@ spec:
           sslKeyPassword: '{{sslKeyPassword}}'
           sslKeystorePassword: '{{sslKeystorePassword}}'
           sslTruststoreLocation: '{{sslTruststoreLocation}}'
+          sslTruststorePassword: '{{sslTruststorePassword}}'
           sslProtocol: '{{sslProtocol}}'
           sslEnabledProtocols: '{{sslEnabledProtocols}}'
           sslEndpointAlgorithm: '{{sslEndpointAlgorithm}}'

Reply via email to