-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathrouter.go
82 lines (73 loc) · 2.39 KB
/
router.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package util
import (
"context"
"time"
o "github.com/onsi/gomega"
corev1 "k8s.io/api/core/v1"
kapierrs "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/wait"
)
func WaitForRouterInternalIP(oc *CLI) (string, error) {
return waitForNamedRouterServiceIP(oc, "router-internal-default")
}
func waitForRouterExternalIP(oc *CLI) (string, error) {
return waitForNamedRouterServiceIP(oc, "router-default")
}
func routerShouldHaveExternalService(oc *CLI) (bool, error) {
foundLoadBalancerServiceStrategyType := false
err := wait.PollImmediate(2*time.Second, 30*time.Second, func() (bool, error) {
ic, err := oc.AdminOperatorClient().OperatorV1().IngressControllers("openshift-ingress-operator").Get(context.Background(), "default", metav1.GetOptions{})
if kapierrs.IsNotFound(err) {
return false, nil
}
o.Expect(err).NotTo(o.HaveOccurred())
if ic.Status.EndpointPublishingStrategy == nil {
return false, nil
}
if ic.Status.EndpointPublishingStrategy.Type == "LoadBalancerService" {
foundLoadBalancerServiceStrategyType = true
}
return true, nil
})
return foundLoadBalancerServiceStrategyType, err
}
func WaitForRouterServiceIP(oc *CLI) (string, error) {
if useExternal, err := routerShouldHaveExternalService(oc); err != nil {
return "", err
} else if useExternal {
return waitForRouterExternalIP(oc)
}
return WaitForRouterInternalIP(oc)
}
func waitForNamedRouterServiceIP(oc *CLI, name string) (string, error) {
_, ns, err := GetRouterPodTemplate(oc)
if err != nil {
return "", err
}
// wait for the service to show up
var endpoint string
err = wait.PollImmediate(2*time.Second, 60*time.Second, func() (bool, error) {
svc, err := oc.AdminKubeClient().CoreV1().Services(ns).Get(context.Background(), name, metav1.GetOptions{})
if kapierrs.IsNotFound(err) {
return false, nil
}
o.Expect(err).NotTo(o.HaveOccurred())
if svc.Spec.Type == corev1.ServiceTypeLoadBalancer {
if len(svc.Status.LoadBalancer.Ingress) != 0 {
if len(svc.Status.LoadBalancer.Ingress[0].IP) != 0 {
endpoint = svc.Status.LoadBalancer.Ingress[0].IP
return true, nil
}
if len(svc.Status.LoadBalancer.Ingress[0].Hostname) != 0 {
endpoint = svc.Status.LoadBalancer.Ingress[0].Hostname
return true, nil
}
}
return false, nil
}
endpoint = svc.Spec.ClusterIP
return true, nil
})
return endpoint, err
}