-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patching CLI with fix for Redis in --dev mode
Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com>
- Loading branch information
Showing
3 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: statestore | ||
spec: | ||
type: state.redis | ||
version: v1 | ||
metadata: | ||
# These settings will work out of the box if you use `helm install | ||
# bitnami/redis`. If you have your own setup, replace | ||
# `redis-master:6379` with your own Redis master address, and the | ||
# Redis password with your own Secret's name. For more information, | ||
# see https://docs.dapr.io/operations/components/component-secrets | ||
- name: redisHost | ||
value: dapr-dev-redis-master:6379 | ||
- name: redisPassword | ||
secretKeyRef: | ||
name: dapr-dev-redis | ||
key: redis-password | ||
auth: | ||
secretStore: kubernetes |