Red Hat Camel K is deprecated
Red Hat Camel K is deprecated and the End of Life date for this product is June 30, 2025. For help migrating to the current go-to solution, Red Hat build of Apache Camel, see the Migration Guide.18.3. 使用方法
本节论述了如何使用 azure-storage-queue-source
。
18.3.1. Knative Source
您可以通过将 azure-storage-queue-source
Kamelet 绑定到 Knative 对象来使用 azure-storage-queue-source Kamelet。
azure-storage-queue-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: azure-storage-queue-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: azure-storage-queue-source
properties:
accessKey: "The Access Key"
accountName: "The Account Name"
queueName: "The Queue Name"
sink:
ref:
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
Copy to clipboardCopied18.3.1.1. 前提条件
确保已将 "Red Hat Integration - Camel K" 安装到您连接到的 OpenShift 集群中。
18.3.1.2. 使用集群 CLI 的步骤
-
将
azure-storage-queue-source-binding.yaml
文件保存到本地驱动器中,然后根据需要编辑该文件。 使用以下命令运行源:
Copy to clipboardCopiedoc apply -f azure-storage-queue-source-binding.yaml
18.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行源:
kamel bind azure-storage-queue-source -p "source.accessKey=The Access Key" -p "source.accountName=The Account Name" -p "source.queueName=The Queue Name" channel:mychannel
Copy to clipboardCopied此命令在集群的当前命名空间中创建 KameletBinding。
18.3.2. Kafka 源
您可以通过将 azure-storage-queue-source
Kamelet 用作 Kafka 源来将其绑定到 Kafka 主题。
azure-storage-queue-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: azure-storage-queue-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: azure-storage-queue-source
properties:
accessKey: "The Access Key"
accountName: "The Account Name"
queueName: "The Queue Name"
sink:
ref:
kind: KafkaTopic
apiVersion: kafka.strimzi.io/v1beta1
name: my-topic
Copy to clipboardCopied18.3.2.1. 先决条件
确保您已在 OpenShift 集群中安装了 AMQ Streams Operator,并在当前命名空间中创建一个名为 my-topic
的主题。另外,请确保已将 "Red Hat Integration - Camel K" 安装到您连接到的 OpenShift 集群中。
18.3.2.2. 使用集群 CLI 的步骤
-
将
azure-storage-queue-source-binding.yaml
文件保存到本地驱动器中,然后根据需要编辑该文件。 使用以下命令运行源:
Copy to clipboardCopiedoc apply -f azure-storage-queue-source-binding.yaml
18.3.2.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行源:
kamel bind azure-storage-queue-source -p "source.accessKey=The Access Key" -p "source.accountName=The Account Name" -p "source.queueName=The Queue Name" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
Copy to clipboardCopied此命令在集群的当前命名空间中创建 KameletBinding。