LoadBalancerURL returns the http endpoint of the ingress load balancer for the operator
()
| 32 | |
| 33 | // LoadBalancerURL returns the http endpoint of the ingress load balancer for the operator |
| 34 | func LoadBalancerURL() (string, error) { |
| 35 | return getLoadBalancerURL("ingressgateway-operator") |
| 36 | } |
| 37 | |
| 38 | func getLoadBalancerURL(name string) (string, error) { |
| 39 | service, err := config.K8sIstio.GetService(name) |
no test coverage detected