azure servicebus sink Azure Servicebus Sink

Provided by: "Apache Software Foundation"

Support Level for this Kamelet is: "Preview"

Send Messages to Azure Servicebus.

Configuration Options

The following table summarizes the configuration options available for the azure-servicebus-sink Kamelet:

Property Name Description Type Default Example

connectionString

Connection String

Required Connection String for Azure Servicebus instance.

string

topicOrQueueName

Topic Or Queue Name

Required Topic Or Queue Name for the Azure Servicebus instance.

String

Dependencies

At runtime, the azure-servicebus-sink Kamelet relies upon the presence of the following dependencies:

  • camel:azure-servicebus

  • camel:kamelet

  • camel:core

Usage

This section describes how you can use the azure-servicebus-sink.

Knative sink

You can use the azure-servicebus-sink Kamelet as a Knative sink by binding it to a Knative object.

azure-servicebus-sink-binding.yaml
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
  name: azure-servicebus-sink-binding
spec:
  source:
    ref:
      kind: Channel
      apiVersion: messaging.knative.dev/v1
      name: mychannel
  sink:
    ref:
      kind: Kamelet
      apiVersion: camel.apache.org/v1alpha1
      name: azure-servicebus-sink
    properties:
      connectionString: The Connection String
      topicOrQueueName: The Topic Or Queue Name

Prerequisite

You have Camel K installed on the cluster.

Procedure for using the cluster CLI

  1. Save the azure-servicebus-sink-binding.yaml file to your local drive, and then edit it as needed for your configuration.

  2. Run the sink by using the following command:

    kubectl apply -f azure-servicebus-sink-binding.yaml

Procedure for using the Kamel CLI

Configure and run the sink by using the following command:

kamel bind azure-servicebus-sink -p "sink.connectionString=The Connection String" -p "sink.topicOrQueueName=The Topic Or Queue Name" channel:mychannel

This command creates the KameletBinding in the current namespace on the cluster.

Kafka sink

You can use the azure-servicebus-sink Kamelet as a Kafka sink by binding it to a Kafka topic.

azure-servicebus-sink-binding.yaml
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
  name: azure-servicebus-sink-binding
spec:
  source:
    ref:
      kind: KafkaTopic
      apiVersion: kafka.strimzi.io/v1beta1
      name: my-topic
  sink:
    ref:
      kind: Kamelet
      apiVersion: camel.apache.org/v1alpha1
      name: azure-servicebus-sink
    properties:
      connectionString: The Connection String
      topicOrQueueName: The Topic Or Queue Name

Prerequisites

  • You’ve installed Strimzi.

  • You’ve created a topic named my-topic in the current namespace.

  • You have Camel K installed on the cluster.

Procedure for using the cluster CLI

  1. Save the azure-servicebus-sink-binding.yaml file to your local drive, and then edit it as needed for your configuration.

  2. Run the sink by using the following command:

    kubectl apply -f azure-servicebus-sink-binding.yaml

Procedure for using the Kamel CLI

Configure and run the sink by using the following command:

kamel bind azure-servicebus-sink -p "sink.connectionString=The Connection String" -p "sink.topicOrQueueName=The Topic Or Queue Name" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic

This command creates the KameletBinding in the current namespace on the cluster.