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.41.3. 使用方法
本节介绍如何使用 jslt-action
。
41.3.1. Knative Action
您可以在 Knative 绑定中使用 jslt-action
Kamelet 作为中间步骤。
jslt-action-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: jslt-action-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: timer-source properties: message: {"foo" : "bar"} steps: - ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: jslt-action properties: template: "file://template.json" sink: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: jslt-action-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: timer-source
properties:
message: {"foo" : "bar"}
steps:
- ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: jslt-action
properties:
template: "file://template.json"
sink:
ref:
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
41.3.1.1. 前提条件
确保已将 "Red Hat Integration - Camel K" 安装到您连接的 OpenShift 集群中。
41.3.1.2. 使用集群 CLI 的步骤
-
将
jslt-action-binding.yaml
文件保存到本地驱动器中,然后根据需要编辑该文件。 使用以下命令运行操作:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow oc apply -f jslt-action-binding.yaml
oc apply -f jslt-action-binding.yaml
41.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行操作:
kamel bind timer-source?message=Hello --step jslt-action -p "step-0.template=file://template.json" channel:mychannel
kamel bind timer-source?message=Hello --step jslt-action -p "step-0.template=file://template.json" channel:mychannel
此命令在集群的当前命名空间中创建 KameletBinding。
如果模板指向当前目录中的文件,如果使用 file://
或 classpath://
,则使用 secret 或 configmap 提供转换。
要查看示例,请参阅使用 secret 和 configmap。有关必要特征的详情,请参阅 Mount trait 和 JVM 类路径特征。
41.3.2. Kafka 操作
您可以在 Kafka 绑定中使用 jslt-action
Kamelet 作为中间步骤。
jslt-action-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: jslt-action-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: timer-source properties: message: {"foo" : "bar"} steps: - ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: jslt-action properties: template: "file://template.json" sink: ref: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: jslt-action-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: timer-source
properties:
message: {"foo" : "bar"}
steps:
- ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: jslt-action
properties:
template: "file://template.json"
sink:
ref:
kind: KafkaTopic
apiVersion: kafka.strimzi.io/v1beta1
name: my-topic
41.3.2.1. 先决条件
确保您已在 OpenShift 集群中安装 AMQ Streams Operator,并在当前命名空间中创建一个名为 my-topic
的主题。另外,您必须将 "Red Hat Integration - Camel K" 安装到您连接到的 OpenShift 集群中。
41.3.2.2. 使用集群 CLI 的步骤
-
将
jslt-action-binding.yaml
文件保存到本地驱动器中,然后根据需要编辑该文件。 使用以下命令运行操作:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow oc apply -f jslt-action-binding.yaml
oc apply -f jslt-action-binding.yaml
41.3.2.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行操作:
kamel bind timer-source?message=Hello --step jslt-action -p "step-0.template=file://template.json" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
kamel bind timer-source?message=Hello --step jslt-action -p "step-0.template=file://template.json" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
此命令在集群的当前命名空间中创建 KameletBinding。