Skip to content

Commit

Permalink
Disable a couple of e2e tests for vagrant for now.
Browse files Browse the repository at this point in the history
The core issue is that vagrant lacks connectivity from master to containers.
  • Loading branch information
jbeda committed Jan 20, 2015
1 parent 611be41 commit 20c5940
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/e2e/cluster_dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ func TestClusterDNS(c *client.Client) bool {
return true
}

if testContext.provider == "vagrant" {
glog.Infof("Skipping test which is broken for vagrant (See https://github.com/GoogleCloudPlatform/kubernetes/issues/3580)")
return true
}

podClient := c.Pods(api.NamespaceDefault)

//TODO: Wait for skyDNS
Expand Down
5 changes: 5 additions & 0 deletions test/e2e/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ import (
)

func TestNetwork(c *client.Client) bool {
if testContext.provider == "vagrant" {
glog.Infof("Skipping test which is broken for vagrant (See https://github.com/GoogleCloudPlatform/kubernetes/issues/3580)")
return true
}

ns := api.NamespaceDefault
svc, err := c.Services(ns).Create(loadObjectOrDie(assetPath(
"contrib", "for-tests", "network-tester", "service.json",
Expand Down

0 comments on commit 20c5940

Please sign in to comment.