Update daprdocs/content/en/reference/cli/dapr-init.md

Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com>
This commit is contained in:
Phil Kedy 2021-03-17 12:01:52 -04:00
parent a7091ca2d1
commit 07ff561c23
1 changed files with 6 additions and 2 deletions

View File

@ -46,7 +46,11 @@ dapr init
dapr init -k
```
### Initialize Dapr in Kubernetes and wait for the installation to complete (default timeout is 300s/5m)
### Initialize Dapr in Kubernetes and wait for the installation to complete
You can wait for the installation to complete its deployment with the `--wait` flag.
The default timeout is 300s (5 min), but can be customized with the `--timeout` flag.
```bash
dapr init -k --wait --timeout 600
```
@ -64,4 +68,4 @@ dapr init -k --runtime-version 0.10.0
### Initialize Dapr in [slim self-hosted mode]({{< ref self-hosted-no-docker.md >}})
```bash
dapr init -s
```
```