24.3. 使用方法

本节论述了如何使用 insert-header-action

24.3.1. Knative 操作

您可以使用 insert-header-action Kamelet 作为 Knative 绑定中的中间步骤。

insert-header-action-binding.yaml

apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
  name: insert-header-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: insert-header-action
    properties:
      name: "The Name"
      value: "The Value"
  sink:
    ref:
      kind: Channel
      apiVersion: messaging.knative.dev/v1
      name: mychannel

24.3.1.1. 前提条件

请确定您已将 "Red Hat Integration - Camel K" 安装到您连接的 OpenShift 集群中。

24.3.1.2. 使用集群 CLI 的步骤

  1. insert-header-action-binding.yaml 文件保存到本地驱动器中,然后根据需要为您的配置进行编辑。
  2. 使用以下命令运行操作:

    oc apply -f insert-header-action-binding.yaml

24.3.1.3. 使用 Kamel CLI 的步骤

使用以下命令配置并运行操作:

kamel bind timer-source?message=Hello --step insert-header-action -p "step-0.name=The Name" -p "step-0.value=The Value" channel:mychannel

这个命令会在集群的当前命名空间中创建 KameletBinding。