mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
Disable a couple of e2e tests for vagrant for now.
The core issue is that vagrant lacks connectivity from master to containers.
This commit is contained in:
parent
611be41aa5
commit
20c594066b
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user