How to connect to temporal cluster in Azure

Temporal cluster in Azure is deployed like this :


I am not able to connect to the frontend gateway.
Apart from IP address, what additional settings I have to configure to connect to the temporal cluster?
I am using typescript sdk.

Is your application outside of this cluster?
With ClusterIP iirc you expose the frontend service on a cluster-internal IP so not sure you would be able to access it outside of cluster (unless you port-forward for example).
Assume you would need to change that to NodePort with static ip or have a load balancer for your frontend services that has grpc pass-through that all your client requests can go through.