Skip to content

How to access applications deployed in minikube Kubernetes cluster using NodePort

Avatar photo

https://www.linkedin.com/in/gineesh/ https://twitter.com/GiniGangadharan

minikube is the most simple way to spin-up and use a Kubernetes cluster for your quick needs. You can install and use minikube clusters on Linux, Windows and Mac workstations without much knowledge about setting up a Kubernetes cluster. minikube will create a single VM cluster (by default) and you can adjust CPU and memory resources if you need more capacity for your Kubernetes cluster. 

Check how to build a minikube cluster using vagrant and virtualbox.

If you have issues with virtualization (if virtualization is not enabled on workstation), you can use docker based minikube as well; refer documentation for more details.

minikube start --driver=docker

In this demo, we will deploy a simple nginx application using helm charts and access it from the host machine.

Deploy nginx application

We will use helm charts from bitnami to quickly deploy the application as our intention to show how to access the application. You can use the standard application deployment (deploy app, expose service etc.)

Add helm repo

$ helm repo add bitnami https://charts.bitnami.com/bitnami

Install nginx web server using helm chart

$ helm install nginx-web-server bitnami/nginx
NAME: nginx-web-server
LAST DEPLOYED: Sat Jan 29 12:14:33 2022
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
CHART NAME: nginx
CHART VERSION: 9.7.5
APP VERSION: 1.21.6
 
** Please be patient while the chart is being deployed **
 
NGINX can be accessed through the following DNS name from within your cluster:
 
    nginx-web-server.default.svc.cluster.local (port 80)
 
To access NGINX from outside the cluster, follow the steps below:
 
1. Get the NGINX URL by running these commands:
 
  NOTE: It may take a few minutes for the LoadBalancer IP to be available.
        Watch the status with: 'kubectl get svc --namespace default -w nginx-web-server'
 
    export SERVICE_PORT=$(kubectl get --namespace default -o jsonpath="{.spec.ports[0].port}" services nginx-web-server)
    export SERVICE_IP=$(kubectl get svc --namespace default nginx-web-server -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
    echo "http://${SERVICE_IP}:${SERVICE_PORT}"

Check pods and services

$ kubectl get pod,svc                                                   
NAME                                  READY   STATUS    RESTARTS   AGE
pod/nginx-web-server-7d9489c4-h775g   1/1     Running   0          21s
 
NAME                       TYPE           CLUSTER-IP     EXTERNAL-IP   PORT(S)        AGE
service/kubernetes         ClusterIP      10.96.0.1      <none>        443/TCP        152m
service/nginx-web-server   LoadBalancer   10.97.190.71   <pending>     80:30736/TCP   21s

We can see that the nginx pods and services are running fine. 

Access the application

minikube will support both NodePort and LoadBalancer type accesses. In this case the external IP is pending as this is not configured yet. As we know the minikube is running inside the vm, we need to know the correct por-mapping for this nginx server. 

$ minikube service --url nginx-web-server                               
http://192.168.64.7:30736

Now you know the IP address and port to be used to access the nginx application. In this case, 192.168.64.7 is the IP address of minikube which you can also retrieve using the command `minikube ip`.

Open a browser and check your nginx application.

Thatโ€™s it; you can try different applications andย you will realize how easy it is to use minikube for your Kubernetes learning and development.

Wrap up

You can increase the NodePort range if you have multiple applications running or some different range is required.

minikube start --extra-config=apiserver.service-node-port-range=1-65535

Check minikube documentation for more details.

Disclaimer:

The views expressed and the content shared in all published articles on this website are solely those of the respective authors, and they do not necessarily reflect the views of the author’s employer or the techbeatly platform. We strive to ensure the accuracy and validity of the content published on our website. However, we cannot guarantee the absolute correctness or completeness of the information provided. It is the responsibility of the readers and users of this website to verify the accuracy and appropriateness of any information or opinions expressed within the articles. If you come across any content that you believe to be incorrect or invalid, please contact us immediately so that we can address the issue promptly.

Avatar photo


https://www.linkedin.com/in/gineesh/ https://twitter.com/GiniGangadharan
Gineesh Madapparambath is the founder of techbeatly and he is the author of the book - ๐—”๐—ป๐˜€๐—ถ๐—ฏ๐—น๐—ฒ ๐—ณ๐—ผ๐—ฟ ๐—ฅ๐—ฒ๐—ฎ๐—น-๐—Ÿ๐—ถ๐—ณ๐—ฒ ๐—”๐˜‚๐˜๐—ผ๐—บ๐—ฎ๐˜๐—ถ๐—ผ๐—ป. He has worked as a Systems Engineer, Automation Specialist, and content author. His primary focus is on Ansible Automation, Containerisation (OpenShift & Kubernetes), and Infrastructure as Code (Terraform). (aka Gini Gangadharan - iamgini.com)

Comments

10 Responses

  1. Yogesh says:

    Hi Gineesh,

    Thank you for this informative blog.

    I tried the same, I am getting ip address and port but not able to access the application locally.

    any idea why?

    • Could you please share the error details ?
      – are you running the VM on VirtualBox or some other platforms ?
      – Using it on Windows/Linux/macOS ?

      Please feel free to join and ask questions in our telegram group: t.me/techbeatly

  2. Ajay says:

    I am using Ubuntu and I can get the URL by using the cmd minikube service –url servicename but it is not working. Any idea how to fix?

  3. Shikha says:

    Hello Gineesh, amazing article. I followed the steps but can’t open it in browser or curl on the URL minikube service –url nginx-web-server. Any pointers?

    • Hi Shikha,
      My apologies for the delayed reply.
      It should work as it is.

      Anyway, could you please join and ask in the community ?
      t.me/techbeatly – we have many people there to help each others ๐Ÿ™‚

  4. any says:

    Thanks for spending time & effort on this article,

    but it’s not working for me & for the majority, i think this is for a very old version/environment

    for others who’ll enter here, go check somewhere else

  5. Cloud User says:

    Hello Gineesh,

    Thank you a lor for this article! I would like to expose this minikube service(that you access locally in your tutorial) to internet so that I can access my deployment from another machine. Do you know how I could that please?
    I tried the basics nodePort and LoadBalancer tutorials of Kubernetes but can’t manage to do it.

    • When you access the service/port from outside of local machine, then you need to manage the localmachine network layer as well.

      did you try following method?
      kubectl port-forward svc/che 8080:8080

      Then try localhost:8080, if working, then you can access it outside the VM using localmachineIP:8080

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.