Merge pull request #2752 from shivamkm07/add_mariner

Adding mariner in dapr init docs
This commit is contained in:
greenie-msft 2022-10-06 15:53:59 -07:00 committed by GitHub
commit 82675d797e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -34,6 +34,7 @@ dapr init [flags]
| `--namespace`, `-n` | | `dapr-system` | The Kubernetes namespace to install Dapr in |
| `--network` | | | The Docker network on which to install and deploy the Dapr runtime |
| `--runtime-version` | | `latest` | The version of the Dapr runtime to install, for example: `1.0.0` |
| `--image-variant` | | | The image variant to use for the Dapr runtime, for example: `mariner` |
| `--set` | | | Configure options on the command line to be passed to the Dapr Helm chart and the Kubernetes cluster upon install. Can specify multiple values in a comma-separated list, for example: `key1=val1,key2=val2` |
| `--slim`, `-s` | | `false` | Exclude placement service, Redis and Zipkin containers from self-hosted installation |
| `--timeout` | | `300` | The wait timeout for the Kubernetes installation |
@ -59,6 +60,12 @@ You can also specify a specific runtime version. Be default, the latest version
dapr init --runtime-version 1.4.0
```
You can also install Dapr with a particular image variant, for example: [mariner]({{< ref "kubernetes-deploy.md#using-mariner-based-images" >}}).
```bash
dapr init --image-variant mariner
```
Dapr can also run [Slim self-hosted mode]({{< ref self-hosted-no-docker.md >}}) without Docker.
```bash