From 83898644c2621623c2203a9d469db5d66ae73a21 Mon Sep 17 00:00:00 2001 From: Jay Vyas Date: Fri, 27 Nov 2015 20:10:00 -0500 Subject: [PATCH] avoid unschedulable pods in networking.go --- test/e2e/networking.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/networking.go b/test/e2e/networking.go index 00ef24588b5..d1081110237 100644 --- a/test/e2e/networking.go +++ b/test/e2e/networking.go @@ -145,7 +145,7 @@ var _ = Describe("Networking", func() { // previous tests may have cause failures of some nodes. Let's skip // 'Not Ready' nodes, just in case (there is no need to fail the test). filterNodes(nodes, func(node api.Node) bool { - return isNodeConditionSetAsExpected(&node, api.NodeReady, true) + return !node.Spec.Unschedulable && isNodeConditionSetAsExpected(&node, api.NodeReady, true) }) if len(nodes.Items) == 0 {