-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add batch file with manual steps to test multi app on Windows
Signed-off-by: Anton Troshin <[email protected]>
- Loading branch information
1 parent
6cb44cb
commit 23e838f
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
REM This script has the sequence of the steps to run manually on a Windows machine | ||
REM Due to limitations of virtual machines and nested virtualization, | ||
REM the script might be best to run on a physical machine or relatively powerful virtual machine in cloud, | ||
REM minikube is pretty heavy on resources. | ||
REM Another option is to use dedicated k8s cluster. | ||
|
||
REM Navigate to any empty directory and run the following commands. | ||
REM Preferably, to run the first cleanup commands to have a clean dapr and minikube environment. | ||
REM At the end of the script, you might want to clean the directory manually and remove cloned "quickstarts" repo. | ||
dapr uninstall --all -k | ||
minikube delete | ||
minikube stop | ||
minikube start | ||
dapr init -k --runtime-version 1.15.0-rc.10 --dev | ||
git clone https://github.com/dapr/quickstarts.git | ||
cd quickstarts/tutorials/hello-kubernetes | ||
git checkout origin/release-1.15 | ||
git branch --show-current | ||
dapr run -f -k . |