Merge pull request #206 from dapr/doc_uninstall

Document the uninstall --all option
This commit is contained in:
Leon Mai 2019-10-28 15:55:47 -07:00 committed by GitHub
commit 3be46a0149
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -89,12 +89,18 @@ runtime version: v0.1.0
### Uninstall Dapr in a standalone mode
Uninstalling will remove the placement and Redis docker containers.
Uninstalling will remove the placement container.
```bash
$ dapr uninstall
```
It won't remove the redis container by default in case you were using it for other purposes. To remove both the placement and redis container:
```bash
$ dapr uninstall --all
```
You should always run a `dapr uninstall` before running another `dapr init`.
## Installing Dapr on a Kubernetes cluster