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.59.3. 使用方法
本节论述了如何使用 replace-field-action
。
59.3.1. Knative Action
您可以使用 replace-field-action
Kamelet 作为 Knative 绑定中的中间步骤。
replace-field-action-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: replace-field-action-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: timer-source properties: message: "Hello" steps: - ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: replace-field-action properties: renames: "foo:bar,c1:c2" sink: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel
59.3.1.1. 前提条件
确保您已将 "Red Hat Integration - Camel K" 安装到您连接的 OpenShift 集群中。
59.3.1.2. 使用集群 CLI 的步骤
-
将
replace-field-action-binding.yaml
文件保存到本地驱动器中,然后根据您的配置需要编辑该文件。 使用以下命令运行操作:
oc apply -f replace-field-action-binding.yaml
59.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行操作:
kamel bind timer-source?message=Hello --step replace-field-action -p "step-0.renames=foo:bar,c1:c2" channel:mychannel
此命令在集群的当前命名空间中创建 KameletBinding。
59.3.2. Kafka 操作
您可以使用 replace-field-action
Kamelet 作为 Kafka 绑定中的中间步骤。
replace-field-action-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: replace-field-action-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: timer-source properties: message: "Hello" steps: - ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: replace-field-action properties: renames: "foo:bar,c1:c2" sink: ref: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic
59.3.2.1. 先决条件
确保您已在 OpenShift 集群中安装了 AMQ Streams Operator,并在当前命名空间中创建一个名为 my-topic
的主题。另外,请确保将 "Red Hat Integration - Camel K" 安装到您连接的 OpenShift 集群中。
59.3.2.2. 使用集群 CLI 的步骤
-
将
replace-field-action-binding.yaml
文件保存到本地驱动器中,然后根据您的配置需要编辑该文件。 使用以下命令运行操作:
oc apply -f replace-field-action-binding.yaml
59.3.2.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行操作:
kamel bind timer-source?message=Hello --step replace-field-action -p "step-0.renames=foo:bar,c1:c2" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
此命令在集群的当前命名空间中创建 KameletBinding。