Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding autoCreate parameter to FTPS Kamelets #1358

Merged
merged 4 commits into from
Mar 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions kamelets/ftps-sink.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -118,3 +125,4 @@ spec:
passiveMode: "{{passiveMode}}"
fileExist: "{{fileExist}}"
binary: "{{binary}}"
autoCreate: "{{autoCreate}}"
8 changes: 8 additions & 0 deletions kamelets/ftps-source.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,13 @@ spec:
default: false
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
autoCreate:
title: Autocreate Missing Directories
description: Automatically create starting directory.
type: boolean
default: true
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
dependencies:
- "camel:ftp"
- "camel:core"
Expand All @@ -108,6 +115,7 @@ spec:
recursive: "{{recursive}}"
idempotent: "{{idempotent}}"
binary: "{{binary}}"
autoCreate: "{{autoCreate}}"
steps:
- set-header:
name: file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -118,3 +125,4 @@ spec:
passiveMode: "{{passiveMode}}"
fileExist: "{{fileExist}}"
binary: "{{binary}}"
autoCreate: "{{autoCreate}}"
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,13 @@ spec:
default: false
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
autoCreate:
title: Autocreate Missing Directories
description: Automatically create starting directory.
type: boolean
default: true
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
dependencies:
- "camel:ftp"
- "camel:core"
Expand All @@ -108,6 +115,7 @@ spec:
recursive: "{{recursive}}"
idempotent: "{{idempotent}}"
binary: "{{binary}}"
autoCreate: "{{autoCreate}}"
steps:
- set-header:
name: file
Expand Down