The documentation you are viewing is for Dapr v1.1 which is an older version of Dapr. For up-to-date documentation, see the latest version.
MQTT binding spec
Detailed documentation on the MQTT binding component
配置
To setup MQTT binding create a component of type bindings.mqtt
. 请参阅本指南,了解如何创建和应用绑定配置。
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: <NAME>
namespace: <NAMESPACE>
spec:
type: bindings.mqtt
version: v1
metadata:
- name: url
value: mqtt[s]://[username][:password]@host.domain[:port]
- name: topic
value: topic1
Warning
以上示例将密钥明文存储, 更推荐的方式是使用 Secret 组件, 这里。元数据字段规范
字段 | 必填 | 绑定支持 | 详情 | 示例 |
---|---|---|---|---|
url | Y | Input/Output | The MQTT broker url | "mqtt[s]://[username][:password]@host.domain[:port]" |
topic | Y | Input/Output | The topic to listen on or send events to | "mytopic" |
绑定支持
此组件支持 输入和输出 绑定接口。
字段名为 ttlInSeconds
。
create
相关链接
Last modified January 1, 0001