From dbb729cb1c3554aa2cad5afcad8fde440ff46385 Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Fri, 22 Sep 2023 14:30:48 -0400 Subject: [PATCH] add note about restriction, move note Signed-off-by: Hannah Hunter --- .../multi-app-dapr-run/multi-app-overview.md | 8 ++++++-- .../multi-app-dapr-run/multi-app-template.md | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-overview.md b/daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-overview.md index bc6e2db6af0..64283705de6 100644 --- a/daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-overview.md +++ b/daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-overview.md @@ -6,6 +6,10 @@ weight: 1000 description: Run multiple applications with one CLI command --- +{{% alert title="Note" color="primary" %}} + Multi-App Run for **Kubernetes** is currently a preview feature only supported in Linux/MacOS. +{{% /alert %}} + Let's say you want to run several applications locally to test them together, similar to a production scenario. Multi-App Run allows you to start and stop a set of applications simultaneously, either: - Locally/self-hosted with processes, or - By building container images and deploying to a Kubernetes cluster @@ -92,9 +96,9 @@ Watch [this video for an overview on Multi-App Run](https://youtu.be/s1p9MNl4VGo ## Multi-App Run template file -> **Note:** Multi-App Run in Kubernetes is currently a preview feature only supported in Linux/MacOS. +When you execute `dapr run -k -f .` or `dapr run -k -f dapr.yaml`, the applications defined in the `dapr.yaml` Multi-App Run template file starts in Kubernetes default namespace. -When you execute `dapr run -k -f .` or `dapr run -k -f dapr.yaml`, the applications defined in the `dapr.yaml` multi-app run template file starts in Kubernetes default namespace. +> **Note:** Currently, the Multi-App Run template can only start applications in the default Kubernetes namespace. The necessary default service and deployment definitions for Kubernetes are generated within the `.dapr/deploy` folder for each app in the `dapr.yaml` template. diff --git a/daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-template.md b/daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-template.md index fc4c3a5605c..81cb228e87a 100644 --- a/daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-template.md +++ b/daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-template.md @@ -7,7 +7,7 @@ description: Unpack the Multi-App Run template file and its properties --- {{% alert title="Note" color="primary" %}} - Multi-App Run for Kubernetes is currently a preview feature only supported in Linux/MacOS. + Multi-App Run for **Kubernetes** is currently a preview feature only supported in Linux/MacOS. {{% /alert %}} The Multi-App Run template file is a YAML file that you can use to run multiple applications at once. In this guide, you'll learn how to: