From c19c82d1154c56b849b10cb3c578f3a337fb1fef Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:37:48 +0000 Subject: [PATCH] Update wiki Home page for kafka-apicurio-registry-not-secured-sink --- Home.md | 45 +++++++++++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..aa0118e 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,38 @@ -# Deploy the Project on CamelX Platform +# Kafka Not Secured with Apicurio Registry Sink -Deploy on CamelX Platform in three steps +Send data to Kafka topics on an insecure broker with Apicurio Registry. -## Step 1: Create a release -From the project space, click on **"Create a release"** +The Kamelet is able to understand the following headers to be set: -The new version is automatically available in the list +- `key` / `ce-key`: as message key -## Step 2: Deploy -Click on **"Deploy"** +- `partition-key` / `ce-partitionkey`: as message partition key -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +Both the headers are optional. -## Step 3: Expose -Enable **"Expose"** +## Metadata -Choose an **API Gateway** (Internal, Public, etc.) +| Property | Value | +|----------|-------| +| Type | sink | +| Group | Kafka | +| Namespace | Kafka | +| Support Level | Stable | +| Provider | Apache Software Foundation | + +## Properties + +| Name | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `topic` | string | ✓ | | Comma separated list of Kafka topic names | +| `bootstrapServers` | string | ✓ | | Comma separated list of Kafka Broker URLs | +| `valueSerializer` | string | | `io.apicurio.registry.serde.avro.AvroKafkaSerializer` | Serliazer class for value that implements the Serializer interface. | +| `apicurioRegistryUrl` | string | ✓ | | The Apicurio Schema Registry URL | +| `avroDatumProvider` | string | | `io.apicurio.registry.serde.avro.ReflectAvroDatumProvider` | How to write data with Avro | + +## Dependencies + +- `camel:core` +- `camel:kamelet` +- `camel:kafka` +- `mvn:io.apicurio:apicurio-registry-serdes-avro-serde:2.4.14.Final`