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 2022/11/22 16:09:31 UTC

[camel-kamelets] branch main updated (8f45b747 -> c3f880dd)

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 8f45b747 Added it-test for SFTP Sink
     new dacef2b1 SCP connector missing authentication options to use a private key
     new 0108cb2a SCP connector missing authentication options to use a private key
     new 62b9907e SCP connector missing authentication options to use a private key
     new c3f880dd SCP connector missing authentication options to use a private key

The 4 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:
 kamelets/scp-sink.kamelet.yaml                     | 25 +++++++++++++++++++++-
 .../main/resources/kamelets/scp-sink.kamelet.yaml  | 25 +++++++++++++++++++++-
 2 files changed, 48 insertions(+), 2 deletions(-)


[camel-kamelets] 02/04: SCP connector missing authentication options to use a private key

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 0108cb2a89fab12d76949474e8ba72f4370184a0
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Nov 22 17:00:31 2022 +0100

    SCP connector missing authentication options to use a private key
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../main/resources/kamelets/scp-sink.kamelet.yaml  | 24 ++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml
index 798bec4f..2bd3adf7 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml
@@ -57,6 +57,26 @@ spec:
         x-descriptors:
         - urn:alm:descriptor:com.tectonic.ui:password
         - urn:camel:group:credentials
+      privateKeyFile:
+        title: Private Key File
+        description: Set the private key file so that the SFTP endpoint can do private key verification.
+        type: string
+      privateKeyPassphrase:
+        title: Private Key Passphrase
+        description: Set the private key file passphrase so that the SFTP endpoint can do private key verification.
+        type: string
+      strictHostKeyChecking:
+        title: Strict Host Checking
+        description: Sets whether to use strict host key checking.
+        type: string
+        default: no
+      useUserKnownHostsFile:
+        title: Use User Known Hosts File
+        description: If knownHostFile has not been explicit configured then use the host file from System.getProperty(user.home)/.ssh/known_hosts.
+        type: boolean
+        default: true
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
   dependencies:
     - "camel:core"
     - "camel:jsch"
@@ -70,4 +90,8 @@ spec:
           parameters:
             username: "{{?username}}"
             password: "{{?password}}"
+            privateKeyFile: "{{?privateKeyFile}}"
+            privateKeyPassphrase: "{{?privateKeyPassphrase}}"
+            strictHostKeyChecking: "{{?strictHostKeyChecking}}"
+            useUserKnownHostsFile: "{{?useUserKnownHostsFile}}"   
             strictHostKeyChecking: "no"


[camel-kamelets] 01/04: SCP connector missing authentication options to use a private key

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 dacef2b159e81a37f951f9a1f05f67acbe401184
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Nov 22 16:59:42 2022 +0100

    SCP connector missing authentication options to use a private key
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/scp-sink.kamelet.yaml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/kamelets/scp-sink.kamelet.yaml b/kamelets/scp-sink.kamelet.yaml
index 798bec4f..2bd3adf7 100644
--- a/kamelets/scp-sink.kamelet.yaml
+++ b/kamelets/scp-sink.kamelet.yaml
@@ -57,6 +57,26 @@ spec:
         x-descriptors:
         - urn:alm:descriptor:com.tectonic.ui:password
         - urn:camel:group:credentials
+      privateKeyFile:
+        title: Private Key File
+        description: Set the private key file so that the SFTP endpoint can do private key verification.
+        type: string
+      privateKeyPassphrase:
+        title: Private Key Passphrase
+        description: Set the private key file passphrase so that the SFTP endpoint can do private key verification.
+        type: string
+      strictHostKeyChecking:
+        title: Strict Host Checking
+        description: Sets whether to use strict host key checking.
+        type: string
+        default: no
+      useUserKnownHostsFile:
+        title: Use User Known Hosts File
+        description: If knownHostFile has not been explicit configured then use the host file from System.getProperty(user.home)/.ssh/known_hosts.
+        type: boolean
+        default: true
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
   dependencies:
     - "camel:core"
     - "camel:jsch"
@@ -70,4 +90,8 @@ spec:
           parameters:
             username: "{{?username}}"
             password: "{{?password}}"
+            privateKeyFile: "{{?privateKeyFile}}"
+            privateKeyPassphrase: "{{?privateKeyPassphrase}}"
+            strictHostKeyChecking: "{{?strictHostKeyChecking}}"
+            useUserKnownHostsFile: "{{?useUserKnownHostsFile}}"   
             strictHostKeyChecking: "no"


[camel-kamelets] 04/04: SCP connector missing authentication options to use a private key

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 c3f880dd3461287f2423f2586d983d8909b47374
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Nov 22 17:07:03 2022 +0100

    SCP connector missing authentication options to use a private key
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml
index 2bd3adf7..5ec1d7d8 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/scp-sink.kamelet.yaml
@@ -94,4 +94,3 @@ spec:
             privateKeyPassphrase: "{{?privateKeyPassphrase}}"
             strictHostKeyChecking: "{{?strictHostKeyChecking}}"
             useUserKnownHostsFile: "{{?useUserKnownHostsFile}}"   
-            strictHostKeyChecking: "no"


[camel-kamelets] 03/04: SCP connector missing authentication options to use a private key

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 62b9907e77619e7f67b4c2735ceaed772756cb96
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Nov 22 17:06:38 2022 +0100

    SCP connector missing authentication options to use a private key
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/scp-sink.kamelet.yaml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kamelets/scp-sink.kamelet.yaml b/kamelets/scp-sink.kamelet.yaml
index 2bd3adf7..5ec1d7d8 100644
--- a/kamelets/scp-sink.kamelet.yaml
+++ b/kamelets/scp-sink.kamelet.yaml
@@ -94,4 +94,3 @@ spec:
             privateKeyPassphrase: "{{?privateKeyPassphrase}}"
             strictHostKeyChecking: "{{?strictHostKeyChecking}}"
             useUserKnownHostsFile: "{{?useUserKnownHostsFile}}"   
-            strictHostKeyChecking: "no"