44.3. 使用
本节论述了如何使用 kafka-source
。
44.3.1. Knative 源
您可以通过将 kafka-source
Kamelet 绑定到 Knative 对象来使用 kafka-source Kamelet 作为 Knative 源。
kafka-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: kafka-source-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: kafka-source properties: bootstrapServers: "The Brokers" password: "The Password" topic: "The Topic Names" user: "The Username" sink: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel
44.3.1.1. 前提条件
确保将 "Red Hat Integration - Camel K" 安装到您连接到的 OpenShift 集群中。
44.3.1.2. 使用集群 CLI 的步骤
-
将
kafka-source-binding.yaml
文件保存到本地驱动器中,然后根据需要进行编辑。 使用以下命令运行源:
oc apply -f kafka-source-binding.yaml
44.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行源:
kamel bind kafka-source -p "source.bootstrapServers=The Brokers" -p "source.password=The Password" -p "source.topic=The Topic Names" -p "source.user=The Username" channel:mychannel
这个命令会在集群的当前命名空间中创建 KameletBinding。