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.61.3. 使用方法
本节论述了如何使用 salesforce-delete-sink
。
61.3.1. Knative Sink
您可以通过将它绑定到 Knative 对象,使用 salesforce-delete-sink
Kamelet 作为 Knative sink。
salesforce-delete-sink-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: salesforce-delete-sink-binding spec: source: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel sink: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: salesforce-delete-sink properties: clientId: "The Consumer Key" clientSecret: "The Consumer Secret" password: "The Password" userName: "The Username"
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: salesforce-delete-sink-binding
spec:
source:
ref:
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: salesforce-delete-sink
properties:
clientId: "The Consumer Key"
clientSecret: "The Consumer Secret"
password: "The Password"
userName: "The Username"
Copy to clipboardCopied61.3.1.1. 前提条件
确保您已将 "红帽集成 - Camel K" 安装到您连接的 OpenShift 集群中。
61.3.1.2. 使用集群 CLI 的步骤
-
将
salesforce-delete-sink-binding.yaml
文件保存到本地驱动器中,然后根据您的配置需要对其进行编辑。 使用以下命令运行 sink:
oc apply -f salesforce-delete-sink-binding.yaml
Copy to clipboardCopiedoc apply -f salesforce-delete-sink-binding.yaml
61.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置和运行 sink:
kamel bind channel:mychannel salesforce-delete-sink -p "sink.clientId=The Consumer Key" -p "sink.clientSecret=The Consumer Secret" -p "sink.password=The Password" -p "sink.userName=The Username"
kamel bind channel:mychannel salesforce-delete-sink -p "sink.clientId=The Consumer Key" -p "sink.clientSecret=The Consumer Secret" -p "sink.password=The Password" -p "sink.userName=The Username"
Copy to clipboardCopied此命令在集群的当前命名空间中创建 KameletBinding。
61.3.2. Kafka Sink
您可以通过将它绑定到 Kafka 主题,使用 salesforce-delete-sink
Kamelet 作为 Kafka sink。
salesforce-delete-sink-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: salesforce-delete-sink-binding spec: source: ref: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic sink: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: salesforce-delete-sink properties: clientId: "The Consumer Key" clientSecret: "The Consumer Secret" password: "The Password" userName: "The Username"
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: salesforce-delete-sink-binding
spec:
source:
ref:
kind: KafkaTopic
apiVersion: kafka.strimzi.io/v1beta1
name: my-topic
sink:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: salesforce-delete-sink
properties:
clientId: "The Consumer Key"
clientSecret: "The Consumer Secret"
password: "The Password"
userName: "The Username"
Copy to clipboardCopied61.3.2.1. 先决条件
确保您已在 OpenShift 集群中安装了 AMQ Streams Operator,并在当前命名空间中创建一个名为 my-topic
的主题。另外,请确保已将 "红帽集成 - Camel K" 安装到您连接的 OpenShift 集群中。
61.3.2.2. 使用集群 CLI 的步骤
-
将
salesforce-delete-sink-binding.yaml
文件保存到本地驱动器中,然后根据您的配置需要对其进行编辑。 使用以下命令运行 sink:
oc apply -f salesforce-delete-sink-binding.yaml
Copy to clipboardCopiedoc apply -f salesforce-delete-sink-binding.yaml
61.3.2.3. 使用 Kamel CLI 的步骤
使用以下命令配置和运行 sink:
kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic salesforce-delete-sink -p "sink.clientId=The Consumer Key" -p "sink.clientSecret=The Consumer Secret" -p "sink.password=The Password" -p "sink.userName=The Username"
kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic salesforce-delete-sink -p "sink.clientId=The Consumer Key" -p "sink.clientSecret=The Consumer Secret" -p "sink.password=The Password" -p "sink.userName=The Username"
Copy to clipboardCopied此命令在集群的当前命名空间中创建 KameletBinding。