blob: 7937241e23260b76affd34b01bdcb18637c6b154 [file] [log] [blame]
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT
= image:kamelets/rabbitmq-source.svg[] RabbitMQ Source
*Provided by: "Apache Software Foundation"*
Receive data from an RabbitMQ Brokers.
== Configuration Options
The following table summarizes the configuration options available for the `rabbitmq-source` Kamelet:
[width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
|===
| Property| Name| Description| Type| Default| Example
| *addresses {empty}* *| Addresses| Comma separated list of RabbitMQ broker addresses| string| |
| *exchangeName {empty}* *| Exchange name| The exchange name determines the exchange the queue will be bound to| string| |
| *password {empty}* *| Password| The password to access the RabbitMQ server| string| |
| *username {empty}* *| Username| The username to access the RabbitMQ server| string| |
| port| Port| Port of the RabbitMQ server| string| `5672`|
|===
NOTE: Fields marked with ({empty}*) are mandatory.
== Usage
This section summarizes how the `rabbitmq-source` can be used in various contexts.
=== Knative Source
The `rabbitmq-source` Kamelet can be used as Knative source by binding it to a Knative object.
.rabbitmq-source-binding.yaml
[source,yaml]
----
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: rabbitmq-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: rabbitmq-source
properties:
addresses: "The Addresses"
exchangeName: "The Exchange name"
password: "The Password"
username: "The Username"
sink:
ref:
kind: InMemoryChannel
apiVersion: messaging.knative.dev/v1
name: mychannel
----
Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to.
Save the `rabbitmq-source-binding.yaml` file into your hard drive, then configure it according to your needs.
You can run the source using the following command:
[source,shell]
----
kubectl apply -f rabbitmq-source-binding.yaml
----
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT