mirror of https://github.com/dapr/docs.git
Merge branch 'v1.1' into asb_publish_retry_settings_1411
This commit is contained in:
commit
f69e0358d2
|
@ -96,7 +96,7 @@ bin components config.yaml
|
|||
{{% /codetab %}}
|
||||
|
||||
{{% codetab %}}
|
||||
Open `%USERPROFILE%\.dapr\` in file explorer:
|
||||
Using Command Prompt (not PowerShell), open `%USERPROFILE%\.dapr\` in file explorer:
|
||||
|
||||
```powershell
|
||||
explorer "%USERPROFILE%\.dapr\"
|
||||
|
|
|
@ -22,6 +22,16 @@ The example below shows how to upgrade to version 1.1.2:
|
|||
dapr upgrade -k --runtime-version=1.1.2
|
||||
```
|
||||
|
||||
{{% alert title="Note" color="warning" %}}
|
||||
If you are using Dapr CLI v1.1.0 there is a known issue where mTLS will be enabled by default, even on clusters where it is disabled. If your cluster has mTLS disabled, and you would like it to stay disabled, add `--set global.mtls.enabled=false` to your upgrade command:
|
||||
|
||||
```bash
|
||||
dapr upgrade -k --runtime-version 1.1.1 --set global.mtls.enabled=false
|
||||
```
|
||||
|
||||
You can track the issue here: [#664](https://github.com/dapr/cli/issues/664).
|
||||
{{% /alert %}}
|
||||
|
||||
You can provide all the available Helm chart configurations using the Dapr CLI.
|
||||
See [here](https://github.com/dapr/cli#supplying-helm-values) for more info.
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ To run without Docker, see the getting started guide [here](https://kafka.apache
|
|||
{{% /codetab %}}
|
||||
|
||||
{{% codetab %}}
|
||||
To run Kafka on Kubernetes, you can use the [Helm Chart](https://github.com/helm/charts/tree/master/incubator/kafka#installing-the-chart).
|
||||
To run Kafka on Kubernetes, you can use any Kafka operator, such as [Strimzi](https://strimzi.io/docs/operators/latest/quickstart.html#ref-install-prerequisites-str).
|
||||
{{% /codetab %}}
|
||||
|
||||
{{< /tabs >}}
|
||||
|
|
Loading…
Reference in New Issue