70.3. 使用方法
这部分论述了如何使用 timer-source
。
70.3.1. Knative Source
您可以通过将 timer-source
Kamelet 绑定到 Knative 对象,使用 timer-source Kamelet 作为 Knative 源。
timer-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: timer-source-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: timer-source properties: message: "hello world" sink: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel
70.3.1.1. 前提条件
确保您已将 "红帽集成 - Camel K" 安装到您连接的 OpenShift 集群中。
70.3.1.2. 使用集群 CLI 的步骤
-
将
timer-source-binding.yaml
文件保存到本地驱动器中,然后根据需要编辑该文件。 使用以下命令运行源:
oc apply -f timer-source-binding.yaml
70.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置和运行源:
kamel bind timer-source -p "source.message=hello world" channel:mychannel
此命令在集群的当前命名空间中创建 KameletBinding。
70.3.2. Kafka 源
您可以通过将 timer-source
Kamelet 绑定到 Kafka 主题,使用 timer-source Kamelet 作为 Kafka 源。
timer-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: timer-source-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: timer-source properties: message: "hello world" sink: ref: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic
70.3.2.1. 先决条件
确保您已在 OpenShift 集群中安装了 AMQ Streams Operator,并在当前命名空间中创建一个名为 my-topic
的主题。另外,请确保已将 "红帽集成 - Camel K" 安装到您连接的 OpenShift 集群中。
70.3.2.2. 使用集群 CLI 的步骤
-
将
timer-source-binding.yaml
文件保存到本地驱动器中,然后根据需要编辑该文件。 使用以下命令运行源:
oc apply -f timer-source-binding.yaml
70.3.2.3. 使用 Kamel CLI 的步骤
使用以下命令配置和运行源:
kamel bind timer-source -p "source.message=hello world" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
此命令在集群的当前命名空间中创建 KameletBinding。