MQTT binding spec
Detailed documentation on the MQTT binding component
Component format
To setup MQTT binding create a component of type bindings.mqtt
. See this guide on how to create and apply a binding configuration.
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 明文存储。 更推荐的方式是使用 Secret 组件, here。
Spec metadata fields
字段 | Required | Binding support | Details | Example |
---|---|---|---|---|
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” |
Output bindings
This component supports both input and output binding interfaces.
字段名为 ttlInSeconds
。
create
相关链接
- Basic schema for a Dapr component
- Bindings building block
- 如何通过 input binding 触发应用
- How-To:使用绑定与外部资源进行交互
- 绑定API 参考
Last modified January 1, 0001