mirror of https://github.com/dapr/quickstarts.git
Aligning test with dapr init --dev which installs redis, so quickstart should not try to add or delete the redis.yaml crd
Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com>
This commit is contained in:
parent
27ae4c9bb4
commit
2415ab5524
|
|
@ -60,7 +60,6 @@ name: Check dapr status
|
|||
```bash
|
||||
dapr status -k
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
||||
You will see output like the following. All services should show `True` in the HEALTHY column and `Running` in the STATUS column before you continue.
|
||||
|
|
@ -363,7 +362,6 @@ expected_stdout_lines:
|
|||
- service "nodeapp" deleted
|
||||
- deployment.apps "nodeapp" deleted
|
||||
- deployment.apps "pythonapp" deleted
|
||||
- component.dapr.io "statestore" deleted
|
||||
output_match_mode: substring
|
||||
match_order: none
|
||||
tags:
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
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: redis-master:6379
|
||||
- name: redisPassword
|
||||
secretKeyRef:
|
||||
name: redis
|
||||
key: redis-password
|
||||
auth:
|
||||
secretStore: kubernetes
|
||||
Loading…
Reference in New Issue