Skip to content

Commit ab9a2ce

Browse files
Merge pull request #267502 from ryanwinterms/main
Switch to new combined pluggable component for Dapr AIO
2 parents 0f4ebb0 + 8375473 commit ab9a2ce

File tree

2 files changed

+7
-29
lines changed

2 files changed

+7
-29
lines changed

articles/iot-operations/develop/howto-develop-dapr-apps.md

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -119,20 +119,9 @@ To start, create a yaml file with the following definitions:
119119
- name: mq-dapr-app
120120
image: <YOUR_DAPR_APPLICATION>
121121
122-
# Container for the Dapr Pub/sub component
123-
- name: aio-mq-pubsub-pluggable
124-
image: ghcr.io/azure/iot-mq-dapr-components/pubsub:latest
125-
volumeMounts:
126-
- name: dapr-unix-domain-socket
127-
mountPath: /tmp/dapr-components-sockets
128-
- name: mqtt-client-token
129-
mountPath: /var/run/secrets/tokens
130-
- name: aio-ca-trust-bundle
131-
mountPath: /var/run/certs/aio-mq-ca-cert/
132-
133-
# Container for the Dapr State store component
134-
- name: aio-mq-statestore-pluggable
135-
image: ghcr.io/azure/iot-mq-dapr-components/statestore:latest
122+
# Container for the pluggable component
123+
- name: aio-mq-components
124+
image: ghcr.io/azure/iot-mq-dapr-components:latest
136125
volumeMounts:
137126
- name: dapr-unix-domain-socket
138127
mountPath: /tmp/dapr-components-sockets
@@ -155,7 +144,7 @@ To start, create a yaml file with the following definitions:
155144
pod/dapr-workload created
156145
NAME READY STATUS RESTARTS AGE
157146
...
158-
dapr-workload 4/4 Running 0 30s
147+
dapr-workload 3/3 Running 0 30s
159148
```
160149

161150
## Troubleshooting

articles/iot-operations/develop/tutorial-event-driven-with-dapr.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,9 @@ To start, create a yaml file that uses the following definitions:
103103
- name: mq-event-driven-dapr
104104
image: ghcr.io/azure-samples/explore-iot-operations/mq-event-driven-dapr:latest
105105

106-
# Container for the Pub/sub component
107-
- name: aio-mq-pubsub-pluggable
108-
image: ghcr.io/azure/iot-mq-dapr-components/pubsub:latest
109-
volumeMounts:
110-
- name: dapr-unix-domain-socket
111-
mountPath: /tmp/dapr-components-sockets
112-
- name: mqtt-client-token
113-
mountPath: /var/run/secrets/tokens
114-
- name: aio-ca-trust-bundle
115-
mountPath: /var/run/certs/aio-mq-ca-cert/
116-
117-
# Container for the State Management component
118-
- name: aio-mq-statestore-pluggable
119-
image: ghcr.io/azure/iot-mq-dapr-components/statestore:latest
106+
# Container for the pluggable component
107+
- name: aio-mq-components
108+
image: ghcr.io/azure/iot-mq-dapr-components:latest
120109
volumeMounts:
121110
- name: dapr-unix-domain-socket
122111
mountPath: /tmp/dapr-components-sockets

0 commit comments

Comments
 (0)