19.3. 使用方法

这部分论述了如何使用 ftp 源

19.3.1. Knative Source

您可以将 ftp-source Kamelet 用作 Knative 源,方法是将其绑定到 Knative 对象。

ftp-source-binding.yaml

apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
  name: ftp-source-binding
spec:
  source:
    ref:
      kind: Kamelet
      apiVersion: camel.apache.org/v1alpha1
      name: ftp-source
    properties:
      connectionHost: "The Connection Host"
      directoryName: "The Directory Name"
      password: "The Password"
      username: "The Username"
  sink:
    ref:
      kind: Channel
      apiVersion: messaging.knative.dev/v1
      name: mychannel

19.3.1.1. 前提条件

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

19.3.1.2. 使用集群 CLI 的步骤

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

    oc apply -f ftp-source-binding.yaml

19.3.1.3. 使用 Kamel CLI 的步骤

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

kamel bind ftp-source -p "source.connectionHost=The Connection Host" -p "source.directoryName=The Directory Name" -p "source.password=The Password" -p "source.username=The Username" channel:mychannel

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