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

Added amazonAWSHost and protocol optional parameters to aws-sqs-* kamelets. #517

Merged
merged 1 commit into from
Sep 16, 2021
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
14 changes: 13 additions & 1 deletion aws-sqs-batch-sink.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ spec:
description: The batch separator string
type: string
example: ","
amazonAWSHost:
title: AWS Host
description: The hostname of the Amazon AWS cloud.
type: string
protocol:
title: Protocol
description: The underlying protocol used to communicate with SQS
type: string
example: http or https
default: https
dependencies:
- "camel:aws2-sqs"
- "camel:kamelet"
Expand All @@ -73,4 +83,6 @@ spec:
secretKey: "{{secretKey}}"
region: "{{region}}"
batchSeparator: "{{batchSeparator}}"
operation: "sendBatchMessage"
operation: "sendBatchMessage"
amazonAWSHost: "{{?amazonAWSHost}}"
protocol: "{{?protocol}}"
12 changes: 12 additions & 0 deletions aws-sqs-fifo-sink.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ spec:
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
default: false
amazonAWSHost:
title: AWS Host
description: The hostname of the Amazon AWS cloud.
type: string
protocol:
title: Protocol
description: The underlying protocol used to communicate with SQS
type: string
example: http or https
default: https
dependencies:
- "camel:aws2-sqs"
- "camel:core"
Expand Down Expand Up @@ -110,3 +120,5 @@ spec:
region: "{{region}}"
messageGroupIdStrategy: "usePropertyValue"
messageDeduplicationIdStrategy: "useExchangeId"
amazonAWSHost: "{{?amazonAWSHost}}"
protocol: "{{?protocol}}"
12 changes: 12 additions & 0 deletions aws-sqs-sink.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,16 @@ spec:
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
default: false
amazonAWSHost:
title: AWS Host
description: The hostname of the Amazon AWS cloud.
type: string
protocol:
title: Protocol
description: The underlying protocol used to communicate with SQS
type: string
example: http or https
default: https
dependencies:
- "camel:aws2-sqs"
- "camel:kamelet"
Expand All @@ -66,3 +76,5 @@ spec:
accessKey: "{{accessKey}}"
secretKey: "{{secretKey}}"
region: "{{region}}"
amazonAWSHost: "{{?amazonAWSHost}}"
protocol: "{{?protocol}}"
12 changes: 12 additions & 0 deletions aws-sqs-source.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ spec:
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
default: false
amazonAWSHost:
title: AWS Host
description: The hostname of the Amazon AWS cloud.
type: string
protocol:
title: Protocol
description: The underlying protocol used to communicate with SQS
type: string
example: http or https
default: https
dependencies:
- "camel:aws2-sqs"
- "camel:kamelet"
Expand All @@ -71,5 +81,7 @@ spec:
accessKey: "{{accessKey}}"
region: "{{region}}"
deleteAfterRead: "{{deleteAfterRead}}"
amazonAWSHost: "{{?amazonAWSHost}}"
protocol: "{{?protocol}}"
steps:
- to: "kamelet:sink"