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.25.3. 使用
这部分论述了如何使用 is-tombstone-filter-action
。
25.3.1. Knative Action
您可以使用 is-tombstone-filter-action
Kamelet 作为 Knative 绑定中的中间步骤。
is-tombstone-filter-action-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: is-tombstone-filter-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: is-tombstone-filter-action sink: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: is-tombstone-filter-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: is-tombstone-filter-action
sink:
ref:
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
25.3.1.1. 前提条件
确保将 "Red Hat Integration - Camel K" 安装到您连接到的 OpenShift 集群中。
25.3.1.2. 使用集群 CLI 的步骤
-
将
is-tombstone-filter-action-binding.yaml
文件保存到本地驱动器中,然后根据需要编辑它。 使用以下命令运行操作:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow oc apply -f is-tombstone-filter-action-binding.yaml
oc apply -f is-tombstone-filter-action-binding.yaml
25.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行操作:
kamel bind timer-source?message=Hello --step is-tombstone-filter-action channel:mychannel
kamel bind timer-source?message=Hello --step is-tombstone-filter-action channel:mychannel
这个命令会在集群的当前命名空间中创建 KameletBinding。