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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generated sources regen #503

Merged
merged 1 commit into from
Sep 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,17 @@ spec:
required:
- addresses
- exchangeName
- username
- password
type: object
properties:
addresses:
title: Addresses
description: Comma separated list of RabbitMQ broker addresses
type: string
portNumber:
title: Port Number
description: Port of the RabbitMQ server
example: "localhost:5672"
routingKey:
title: Routing Key
description: The routing key to use when binding a consumer queue to the exchange
type: string
default: 5672
username:
title: Username
description: The username to access the RabbitMQ server
Expand All @@ -46,16 +44,21 @@ spec:
title: Exchange name
description: The exchange name determines the exchange the queue will be bound to
type: string
queue:
title: Queue name
description: The queue to receive messages from
type: string
dependencies:
- "camel:rabbitmq"
- "camel:kamelet"
flow:
from:
uri: "rabbitmq://{{exchangeName}}"
parameters:
password: "{{password}}"
username: "{{username}}"
password: "{{?password}}"
username: "{{?username}}"
addresses: "{{addresses}}"
portNumber: "{{portNumber}}"
routingKey: "{{?routingKey}}"
queue: "{{?queue}}"
steps:
- to: "kamelet:sink"