diff --git a/tutorials/hello-kubernetes/README.md b/tutorials/hello-kubernetes/README.md index dd27f760c..745e6fb0e 100644 --- a/tutorials/hello-kubernetes/README.md +++ b/tutorials/hello-kubernetes/README.md @@ -60,7 +60,6 @@ name: Check dapr status ```bash dapr status -k ``` - 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: diff --git a/tutorials/hello-kubernetes/deploy/redis.yaml b/tutorials/hello-kubernetes/deploy/redis.yaml deleted file mode 100644 index de9be2a19..000000000 --- a/tutorials/hello-kubernetes/deploy/redis.yaml +++ /dev/null @@ -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