Questions tagged [minikube]

Minikube simplifies the process of running Kubernetes on a personal computer. It creates a single-node Kubernetes cluster within a virtual machine on your laptop, designed for users interested in experimenting with Kubernetes or incorporating it into their daily development routine.

What is the best way to make a service in minikube accessible from another device on the same network?

I have set up a service in minikube (expressjs API) on my local machine. When I start the service using minikube service wedeliverapi --url, I am able to access it from my browser at localhost:port/api. https://i.stack.imgur.com/Rhm3B.png https://i.stack ...

Unable to reach the ingress service from inside the cluster

Recently dipping my toes into kubernetes, I've got minikube up and running on my linux mint 20. Currently working to implement server-side rendering with nextjs, and I've used helm to install ingress-nginx. ingess-service.yaml : apiVersion: netw ...