Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
This commit is contained in:
Hannah Hunter 2023-08-24 13:14:29 -04:00
parent aaa2f246b5
commit 647dbbac21
5 changed files with 24 additions and 22 deletions

View File

@ -13,11 +13,14 @@ description: >
- [Docker](https://docs.docker.com/install/)
- [kubectl](https://kubernetes.io/docs/tasks/tools/)
- [Minikube](https://minikube.sigs.k8s.io/docs/start/)
-
- For Windows:
- Enable Virtualization in BIOS
- [Install Hyper-V](https://docs.microsoft.com/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v)
{{% alert title="Note" color="primary" %}}
See [the official Minikube documentation on drivers](https://minikube.sigs.k8s.io/docs/reference/drivers/) for details on supported drivers and how to install plugins.
{{% /alert %}}
## Start the Minikube cluster
1. If applicable for your project, set the default VM.
@ -26,16 +29,11 @@ description: >
minikube config set vm-driver [driver_name]
```
{{% alert title="Note" color="warning" %}}
See [the official Minikube documentation on drivers](https://minikube.sigs.k8s.io/docs/reference/drivers/) for details on supported drivers and how to install plugins.
{{% /alert %}}
1. Start the cluster. If necessary, specify version 1.13.x or newer of Kubernetes with `--kubernetes-version`
1. Start the cluster.
- If necessary, specify version 1.13.x or newer of Kubernetes with `--kubernetes-version`
```bash
minikube start --cpus=4 --memory=4096
```
```bash
minikube start --cpus=4 --memory=4096
```
1. Enable the Minikube dashboard and ingress add-ons.

View File

@ -131,9 +131,9 @@ dapr uninstall -k
<!-- Helm -->
{{% codetab %}}
## Install with Helm (advanced)
## Install with Helm
You can install Dapr on Kubernetes using a Helm 3 chart.
You can install Dapr on Kubernetes using a Helm v3 chart.
❗**Important:** The latest Dapr Helm chart no longer supports Helm v2. [Migrate from Helm v2 to Helm v3](https://helm.sh/blog/migrate-from-helm-v2-to-helm-v3/).

View File

@ -6,9 +6,9 @@ weight: 60000
description: "How to run Dapr apps on Kubernetes clusters with Windows nodes"
---
Dapr supports running your Dapr microservices on Kubernetes clusters on:
- Excusively Windows
- Exclusively Linux
Dapr supports running your microservices on Kubernetes clusters on:
- Windows
- Linux
- A combination of both
This is especially helpful during a piecemeal migration of a legacy application into a Dapr Kubernetes cluster.

View File

@ -6,8 +6,6 @@ weight: 30000
description: "Follow these steps to upgrade Dapr on Kubernetes and ensure a smooth upgrade."
---
## Upgrade existing cluster to {{% dapr-latest-version long="true" %}}
You can upgrade the Dapr control plane on a Kubernetes cluster using either the Dapr CLI or Helm.
{{% alert title="Note" color="primary" %}}
@ -17,15 +15,16 @@ Refer to the [Dapr version policy]({{< ref "support-release-policy.md#upgrade-pa
{{< tabs "Dapr CLI" "Helm" >}}
<!-- Dapr CLI -->
{{% codetab %}}
## Upgrade using the Dapr CLI
You can upgrade Dapr using the [Dapr CLI]({{< ref install-dapr-cli.md >}}).
### Prerequisites
- [Install the Dapr CLI]({{< ref install-dapr-cli.md >}})
- An existing [Kubernetes cluster running with Dapr]({{< ref cluster >}})
### Upgrade using the Dapr CLI
Upgrade your existing cluster to version {{% dapr-latest-version long="true" %}}:
### Upgrade existing cluster to {{% dapr-latest-version long="true" %}}
```bash
dapr upgrade -k --runtime-version={{% dapr-latest-version long="true" %}}
@ -59,13 +58,18 @@ The CustomResourceDefinition "configurations.dapr.io" is invalid: spec.preserveU
<!-- Helm -->
{{% codetab %}}
## Upgrade using Helm
You can upgrade Dapr using a Helm v3 chart.
❗**Important:** The latest Dapr Helm chart no longer supports Helm v2. [Migrate from Helm v2 to Helm v3](https://helm.sh/blog/migrate-from-helm-v2-to-helm-v3/).
### Prerequisites
- [Install Helm v3](https://github.com/helm/helm/releases)
- An existing [Kubernetes cluster running with Dapr]({{< ref cluster >}})
### Upgrade using Helm
### Upgrade existing cluster to {{% dapr-latest-version long="true" %}}
As of version 1.0.0 onwards, existing certificate values will automatically be reused when upgrading Dapr using Helm.

View File

@ -7,7 +7,7 @@ description: See and measure the message calls to components and between network
---
{{% alert title="More about Dapr Observability" color="primary" %}}
Learn more about how to use Dapr Observability Lock:
Learn more about how to use Dapr Observability:
- Explore observability via any of the supporting [Dapr SDKs]({{< ref sdks >}}).
- Review the [Observability API reference documentation]({{< ref health_api.md >}}).
- Read the [general overview of the observability concept]({{< ref observability-concept >}}) in Dapr.