Commit f30846ec authored by Zach Loafman's avatar Zach Loafman

Skip TestClusterDNS on GKE (since DNS is disabled there)

We'll eventually want to do something fancier here. But the yak needs to stop growing hair.
parent 96300071
...@@ -447,6 +447,15 @@ func outputTAPSummary(infoList []TestInfo) { ...@@ -447,6 +447,15 @@ func outputTAPSummary(infoList []TestInfo) {
// TestClusterDNS checks that cluster DNS works. // TestClusterDNS checks that cluster DNS works.
func TestClusterDNS(c *client.Client) bool { func TestClusterDNS(c *client.Client) bool {
// TODO:
// https://github.com/GoogleCloudPlatform/kubernetes/issues/3305
// (but even if it's fixed, this will need a version check for
// skewed version tests)
if os.Getenv("KUBERNETES_PROVIDER") == "gke" {
glog.Infof("skipping TestClusterDNS on gke")
return true
}
podClient := c.Pods(api.NamespaceDefault) podClient := c.Pods(api.NamespaceDefault)
//TODO: Wait for skyDNS //TODO: Wait for skyDNS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment