49.3. 使用方法
本节介绍了如何使用 salesforce-source
。
49.3.1. Knative Source
您可以通过将其绑定到 Knative 对象,将 Clair -source
Kamelet 用作 Knative 源。
salesforce-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: salesforce-source-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: salesforce-source properties: clientId: "The Consumer Key" clientSecret: "The Consumer Secret" password: "The Password" query: "SELECT Id, Name, Email, Phone FROM Contact" topicName: "ContactTopic" userName: "The Username" sink: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel
49.3.1.1. 前提条件
请确定您已将 "Red Hat Integration - Camel K" 安装到您连接的 OpenShift 集群中。
49.3.1.2. 使用集群 CLI 的步骤
-
将
dashboard-source-binding.yaml
文件保存到本地驱动器中,然后根据需要为您的配置进行编辑。 使用以下命令运行源:
oc apply -f salesforce-source-binding.yaml
49.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行源:
kamel bind salesforce-source -p "source.clientId=The Consumer Key" -p "source.clientSecret=The Consumer Secret" -p "source.password=The Password" -p "source.query=SELECT Id, Name, Email, Phone FROM Contact" -p "source.topicName=ContactTopic" -p "source.userName=The Username" channel:mychannel
这个命令会在集群的当前命名空间中创建 KameletBinding。