10.3. 使用方法
本节论述了如何使用 aws-sqs-source。
10.3.1. Knative Source
您可以通过将其绑定到 Knative 对象,使用 aws-sqs-source Kamelet 作为 Knative 源。
aws-sqs-source-binding.yaml
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: aws-sqs-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: aws-sqs-source
properties:
accessKey: "The Access Key"
queueNameOrArn: "The Queue Name"
region: "eu-west-1"
secretKey: "The Secret Key"
sink:
ref:
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
10.3.1.1. 前提条件
请确定您已将 "Red Hat Integration - Camel K" 安装到您连接的 OpenShift 集群中。
10.3.1.2. 使用集群 CLI 的步骤
-
将
aws-sqs-source-binding.yaml文件保存到本地驱动器中,然后根据需要编辑它。 使用以下命令运行源:
oc apply -f aws-sqs-source-binding.yaml
10.3.1.3. 使用 Kamel CLI 的步骤
使用以下命令配置并运行源:
kamel bind aws-sqs-source -p "source.accessKey=The Access Key" -p "source.queueNameOrArn=The Queue Name" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" channel:mychannel
这个命令会在集群的当前命名空间中创建 KameletBinding。