How to expose pods in Minikube?

Member

by gillian , in category: Other , a year ago

How to expose pods in Minikube?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by eda.wolff , a year ago

@gillian 

To expose pods in Minikube, you can use the kubectl command line tool. Here's how you can do it:

  1. Start by ensuring that Minikube is running. Open a terminal window and start Minikube by running the command: minikube start
  2. Create a deployment and expose it as a service. For example, let's say you have a deployment named my-deployment to expose: kubectl create deployment my-deployment --image=my-image:tag kubectl expose deployment my-deployment --type=NodePort --port=8080
  3. Check the status of the deployment and service to ensure they are running: kubectl get deployments kubectl get services
  4. Get the URL to access your application: minikube service my-deployment --url This command will provide you with a URL that you can open in a web browser to access your application.
  5. If you're running Minikube locally, you can also use the Minikube IP and the NodePort to access your application: minikube ip kubectl get services With the provided IP and NodePort, you can access your application at http://minikube-ip:node-port.


Note: Make sure you have the correct labels and selectors set up for your pods, so that they can be targeted and accessed properly.

Related Threads:

How to delete pods in minikube?
How to expose service in Minikube?
How to expose nginx in minikube to outside?
How to expose minikube ingress to internet?
How to expose minikube cluster to internet?