What is the best way to make a service available outside my cluster?

Hello,

I am running an EKS cluster (EKS is the managed Kubernetes solution provided by AWS). I have Istio installed on it using the default profile. I deployed a StatefulSet and Service in it.

My question is: Given the above setup, what is the best way to make the service available outside the Kubernetes cluster?

Thanks!

You can use the ingress gateway and the Gateway resource to expose any Kubernetes services running inside the cluster. Check the docs here: Istio / Ingress Gateways

Hi @peterj,

Great, thanks! I will take a look.