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 68ad8ab43892aa2573ab84d0ab639ce42f7c90b5 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Nov 18 19:15:08 2022 +0100 FTP / SFTP connectors missing setting for binary mode transfers - FTP Sink Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- kamelets/ftp-sink.kamelet.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/kamelets/ftp-sink.kamelet.yaml b/kamelets/ftp-sink.kamelet.yaml index ea86556b..e0fd8111 100644 --- a/kamelets/ftp-sink.kamelet.yaml +++ b/kamelets/ftp-sink.kamelet.yaml @@ -82,6 +82,13 @@ spec: description: How to behave in case of file already existent. There are 4 enums. Possible values are Override, Append, Fail, or Ignore. type: string default: Override + binary: + title: Binary + description: Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false). + type: boolean + default: false + x-descriptors: + - 'urn:alm:descriptor:com.tectonic.ui:checkbox' dependencies: - "camel:ftp" - "camel:core" @@ -108,3 +115,4 @@ spec: password: "{{password}}" passiveMode: "{{passiveMode}}" fileExist: "{{fileExist}}" + binary: "{{binary}}"