mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 14:37:00 +00:00
Merge pull request #3303 from zmerlynn/skip_skydns_test_on_gke
Skip TestClusterDNS on GKE (since DNS is disabled there)
This commit is contained in:
commit
e421e6eecd
@ -447,6 +447,15 @@ func outputTAPSummary(infoList []TestInfo) {
|
||||
|
||||
// TestClusterDNS checks that cluster DNS works.
|
||||
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)
|
||||
|
||||
//TODO: Wait for skyDNS
|
||||
|
Loading…
Reference in New Issue
Block a user