38.3. 使用
这部分论述了如何使用 jms-amqp-10-source
。
38.3.1. Knative 源
通过将 jms-amqp-10-source
Kamelet 绑定到 Knative 对象,使用 jms-amqp-10-source Kamelet 作为 Knative 源。
jms-amqp-10-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1 kind: KameletBinding metadata: name: jms-amqp-10-source-binding spec: source: ref: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: jms-amqp-10-source properties: destinationName: "The Destination Name" remoteURI: "amqp://my-host:31616" sink: ref: kind: Channel apiVersion: messaging.knative.dev/v1 name: mychannel
38.3.1.1. 前提条件
确保将 "Red Hat Integration - Camel K" 安装到您连接到的 OpenShift 集群中。
38.3.1.2. 使用集群 CLI 的步骤
-
将
jms-amqp-10-source-binding.yaml
文件保存到本地驱动器,然后根据需要编辑它作为您的配置。 使用以下命令运行源:
oc apply -f jms-amqp-10-source-binding.yaml
38.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行源:
kamel bind jms-amqp-10-source -p "source.destinationName=The Destination Name" -p "source.remoteURI=amqp://my-host:31616" channel:mychannel
这个命令会在集群的当前命名空间中创建 KameletBinding。