Skip to content

Instantly share code, notes, and snippets.

@marcduiker
Last active June 28, 2024 15:37
Show Gist options
  • Save marcduiker/d8235b530e7acf90509e59db7a2d385d to your computer and use it in GitHub Desktop.
Save marcduiker/d8235b530e7acf90509e59db7a2d385d to your computer and use it in GitHub Desktop.
Minikube with Dapr
  1. Install MiniKube
  2. Start with insecure registry minikube start
  3. New terminal: minikube dashboard
  4. minikube addons enable ingress
  5. Install Dapr dapr init -k --dev
  6. Check components: dapr components -k
  7. Check config: dapr configurations -k
  8. cd to folder with Dockerfile: minikube image build -t order-processor:latest .
  9. kubectl apply -f ..\..\deploy\redis.yaml (this includes the actor setting)
  10. kubectl apply -f ..\..\deploy\order-processor-csharp.yaml
  11. minikube delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment