This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 3.20.x-ftp-autocreate in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit a61cc0cdbe06c00c1b961199823afb6174e8c5d6 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Mar 10 09:40:53 2023 +0100 FTP sink - Add autocreate option for consistency with the source Signed-off-by: Andrea Cosentino <[email protected]> --- 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 6ac473fd..10270f3f 100644 --- a/kamelets/ftp-sink.kamelet.yaml +++ b/kamelets/ftp-sink.kamelet.yaml @@ -91,6 +91,13 @@ spec: default: false x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:checkbox' + autocreate: + title: Autocreate Missing Directories + description: Automatically create the directory the files should be written to. + type: boolean + default: true + x-descriptors: + - 'urn:alm:descriptor:com.tectonic.ui:checkbox' dependencies: - "camel:ftp" - "camel:core" @@ -118,3 +125,4 @@ spec: passiveMode: "{{passiveMode}}" fileExist: "{{fileExist}}" binary: "{{binary}}" + autocreate: "{{autocreate}}"
