Skip to content

Commit

Permalink
Added Spring-RabbitMQ Sink and Source Kamelet
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Cosentino <ancosen@gmail.com>
  • Loading branch information
oscerd committed Feb 14, 2024
1 parent a4161d8 commit 4621ff0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
2 changes: 2 additions & 0 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@
* xref:splunk-hec-sink.adoc[]
* xref:splunk-sink.adoc[]
* xref:splunk-source.adoc[]
* xref:spring-rabbitmq-sink.adoc[]
* xref:spring-rabbitmq-source.adoc[]
* xref:sqlserver-sink.adoc[]
* xref:sqlserver-source.adoc[]
* xref:ssh-sink.adoc[]
Expand Down
7 changes: 4 additions & 3 deletions kamelets/spring-rabbitmq-sink.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ spec:
description: |-
Send data to a RabbitMQ Broker.
required:
- addresses
- host
- port
- exchangeName
type: object
properties:
Expand Down Expand Up @@ -81,8 +82,8 @@ spec:
- name: connectionFactory
type: "#class:org.springframework.amqp.rabbit.connection.CachingConnectionFactory"
properties:
username: '{{username}}'
password: '{{password}}'
username: '{{?username}}'
password: '{{?password}}'
host: '{{host}}'
port: '{{port}}'
from:
Expand Down
7 changes: 4 additions & 3 deletions kamelets/spring-rabbitmq-source.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ spec:
description: |-
Receive data from a RabbitMQ Broker.
required:
- addresses
- host
- port
- exchangeName
type: object
properties:
Expand Down Expand Up @@ -86,8 +87,8 @@ spec:
- name: connectionFactory
type: "#class:org.springframework.amqp.rabbit.connection.CachingConnectionFactory"
properties:
username: '{{username}}'
password: '{{password}}'
username: '{{?username}}'
password: '{{?password}}'
host: '{{host}}'
port: '{{port}}'
from:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ spec:
description: |-
Send data to a RabbitMQ Broker.
required:
- addresses
- host
- port
- exchangeName
type: object
properties:
Expand Down Expand Up @@ -81,8 +82,8 @@ spec:
- name: connectionFactory
type: "#class:org.springframework.amqp.rabbit.connection.CachingConnectionFactory"
properties:
username: '{{username}}'
password: '{{password}}'
username: '{{?username}}'
password: '{{?password}}'
host: '{{host}}'
port: '{{port}}'
from:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ spec:
description: |-
Receive data from a RabbitMQ Broker.
required:
- addresses
- host
- port
- exchangeName
type: object
properties:
Expand Down Expand Up @@ -86,8 +87,8 @@ spec:
- name: connectionFactory
type: "#class:org.springframework.amqp.rabbit.connection.CachingConnectionFactory"
properties:
username: '{{username}}'
password: '{{password}}'
username: '{{?username}}'
password: '{{?password}}'
host: '{{host}}'
port: '{{port}}'
from:
Expand Down

0 comments on commit 4621ff0

Please sign in to comment.