mirror of https://github.com/dapr/quickstarts.git
swap out rabbitmq component for default redis
This commit is contained in:
parent
0a95f4e007
commit
13b29cb07f
|
|
@ -3,21 +3,13 @@ kind: Component
|
||||||
metadata:
|
metadata:
|
||||||
name: order_pub_sub
|
name: order_pub_sub
|
||||||
spec:
|
spec:
|
||||||
type: pubsub.rabbitmq
|
type: pubsub.redis
|
||||||
version: v1
|
version: v1
|
||||||
metadata:
|
metadata:
|
||||||
- name: host
|
- name: redisHost
|
||||||
value: "amqp://localhost:5672"
|
value: localhost:6379
|
||||||
- name: durable
|
- name: redisPassword
|
||||||
value: "false"
|
value: ""
|
||||||
- name: deletedWhenUnused
|
|
||||||
value: "false"
|
|
||||||
- name: autoAck
|
|
||||||
value: "false"
|
|
||||||
- name: reconnectWait
|
|
||||||
value: "0"
|
|
||||||
- name: concurrency
|
|
||||||
value: parallel
|
|
||||||
scopes:
|
scopes:
|
||||||
- orderprocessing
|
- orderprocessing
|
||||||
- checkout
|
- checkout
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue