mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-10 05:30:26 +00:00
Merge pull request #3656 from jbeda/vagrant-e2e
Fix up a bunch of vagrant stuff to enable e2e
This commit is contained in:
@@ -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
|
||||
|
@@ -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",
|
||||
|
Reference in New Issue
Block a user