mirror of https://github.com/dapr/quickstarts.git
13 lines
333 B
YAML
13 lines
333 B
YAML
apiVersion: dapr.io/v1alpha1
|
|
kind: Component
|
|
metadata:
|
|
name: sqldb
|
|
namespace: quickstarts
|
|
spec:
|
|
type: bindings.postgres
|
|
version: v1
|
|
metadata:
|
|
- name: url # Required
|
|
value: "user=postgres password=docker host=localhost port=5432 dbname=orders pool_min_conns=1 pool_max_conns=10"
|
|
- name: direction
|
|
value: "output" |