Re-enable e2e test to check connectivity to global load balancer, now that it works properly.

This commit is contained in:
Quinton Hoole
2016-09-12 17:34:55 -07:00
parent 51b5ff59b9
commit a4696bb8c8

View File

@@ -149,7 +149,7 @@ var _ = framework.KubeDescribe("Federated ingresses [Feature:Federation]", func(
}
})
PIt("should be able to discover a federated ingress service", func() {
PIt("should be able to discover a federated ingress service via DNS", func() {
// we are about the ingress name
svcDNSNames := []string{
fmt.Sprintf("%s.%s", FederatedIngressServiceName, ns),
@@ -163,7 +163,8 @@ var _ = framework.KubeDescribe("Federated ingresses [Feature:Federation]", func(
discoverService(f, DNSName, true, "federated-ingress-e2e-discovery-pod-"+strconv.Itoa(i))
}
// TODO check dns record in global dns server
})
It("should be able to connect to a federated ingress via its load balancer", func() {
// check the traffic on federation ingress
jig.waitForFederatedIngress()
})