Skip to content

Instantly share code, notes, and snippets.

@marcduiker
Last active July 4, 2024 11:10
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 (minikube tunnel ?)
  5. Install Dapr dapr init -k --dev
  6. dapr status -k
  7. Check components: dapr components -k
  8. Check config: dapr configurations -k
  9. cd to order-processor folder with Dockerfile: minikube image build -t order-processor:latest .
  10. cd to checkout folder with Dockerfile: minikube image build -t checkout:latest .
  11. cd to deploy folder: kubectl apply -f . yaml`
  12. kubectl get pods,services
  13. minikube delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment