From ee7ad4ee9bd819c01e26a6878e906b2c9a7c11f8 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:40:28 +0000 Subject: [PATCH] Update wiki Home page for spring-rabbitmq-source --- Home.md | 39 +++++++++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..ed4a288 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,32 @@ -# Deploy the Project on CamelX Platform +# RabbitMQ Source -Deploy on CamelX Platform in three steps +Receive data from a RabbitMQ Broker. -## Step 1: Create a release -From the project space, click on **"Create a release"** +## Metadata -The new version is automatically available in the list +| Property | Value | +|----------|-------| +| Type | source | +| Group | RabbitMQ | +| Namespace | Messaging | +| Support Level | Preview | +| Provider | Apache Software Foundation | -## Step 2: Deploy -Click on **"Deploy"** +## Properties -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +| Name | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `host` | string | ✓ | | RabbitMQ broker address | +| `port` | int | ✓ | | RabbitMQ broker port | +| `routingKey` | string | | | The routing key to use when binding a consumer queue to the exchange | +| `username` | string | | | The username to access the RabbitMQ server | +| `password` | string | | | The password to access the RabbitMQ server | +| `exchangeName` | string | ✓ | | The exchange name determines the exchange the queue will be bound to | +| `queues` | string | | | The queue to receive messages from | +| `autoDeclare` | boolean | | `false` | The routing key to use when binding a consumer queue to the exchange | +| `vhost` | string | | `/` | The virtual host | -## Step 3: Expose -Enable **"Expose"** +## Dependencies -Choose an **API Gateway** (Internal, Public, etc.) +- `camel:spring-rabbitmq` +- `camel:kamelet`