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:
|
||||
name: order_pub_sub
|
||||
spec:
|
||||
type: pubsub.rabbitmq
|
||||
type: pubsub.redis
|
||||
version: v1
|
||||
metadata:
|
||||
- name: host
|
||||
value: "amqp://localhost:5672"
|
||||
- name: durable
|
||||
value: "false"
|
||||
- name: deletedWhenUnused
|
||||
value: "false"
|
||||
- name: autoAck
|
||||
value: "false"
|
||||
- name: reconnectWait
|
||||
value: "0"
|
||||
- name: concurrency
|
||||
value: parallel
|
||||
- name: redisHost
|
||||
value: localhost:6379
|
||||
- name: redisPassword
|
||||
value: ""
|
||||
scopes:
|
||||
- orderprocessing
|
||||
- checkout
|
||||
|
|
Loading…
Reference in New Issue