Exposed service not accessible on minikube Exposed service not accessible on minikube kubernetes kubernetes

Exposed service not accessible on minikube


The nginx dockerfile exposes port 80, but your pod is using port 8090. Run the deployment using the right port 80 should fix it:

kubectl run nginx --image=nginx --port=80