22.3. 使用
这部分论述了如何使用 ceph-source
。
22.3.1. Knative 源
您可以通过将 ceph-source
Kamelet 绑定到 Knative 对象,来使用 ceph-source Kamelet 作为 Knative 源。
ceph-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: ceph-source-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: ceph-source properties: accessKey: "The Access Key" bucketName: "The Bucket Name" cephUrl: "http://ceph-storage-address.com" secretKey: "The Secret Key" zoneGroup: "The Bucket Zone Group" sink: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel
22.3.1.1. 前提条件
确保将 "Red Hat Integration - Camel K" 安装到您连接到的 OpenShift 集群中。
22.3.1.2. 使用集群 CLI 的步骤
-
将
ceph-source-binding.yaml
文件保存到本地驱动器中,然后根据需要进行编辑。 使用以下命令运行源:
oc apply -f ceph-source-binding.yaml
22.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行源:
kamel bind ceph-source -p "source.accessKey=The Access Key" -p "source.bucketName=The Bucket Name" -p "source.cephUrl=http://ceph-storage-address.com" -p "source.secretKey=The Secret Key" -p "source.zoneGroup=The Bucket Zone Group" channel:mychannel
这个命令会在集群的当前命名空间中创建 KameletBinding。