Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the URL of your EKS cluster?

I've followed the steps to set up an EKS cluster and successfully have one service which exposes port 31515 from a pod..but I'm stuck at finding out what my public url is. EKS seems to have no such thing so how do I access it from the outside? Or am I not looking in the right place.

like image 876
Calicoder Avatar asked Sep 14 '25 03:09

Calicoder


1 Answers

Your all External IP's (Public IP's) should be available from kubectl Kubernetes command line.

To show these information run:

kubectl get services --all-namespaces -o wide

If it is needed specify with --kubeconfig flag your unique kubeconfig file.

Example:

NAME         TYPE        CLUSTER-IP     EXTERNAL-IP      PORT(S)    AGE
my-service   ClusterIP   10.3.245.137   104.198.205.71   8080/TCP   54s

Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!