Skip to content

Commit

Permalink
Add batch file with manual steps to test multi app on Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Troshin <[email protected]>
  • Loading branch information
antontroshin committed Feb 5, 2025
1 parent 6cb44cb commit 23e838f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tests/manual/windows_k8s_manual_test.bat
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 .

0 comments on commit 23e838f

Please sign in to comment.