Merge pull request #14646 from mesosphere/sttts-fix-kubeproxy-test

Fix e2e tests for providers without SSH to the nodes
This commit is contained in:
Alex Robinson
2015-10-05 11:56:09 -07:00
7 changed files with 39 additions and 26 deletions

View File

@@ -242,6 +242,9 @@ func providerIs(providers ...string) bool {
return false
}
// providersWithSSH are those providers where each node is accessible with SSH
var providersWithSSH = []string{"gce", "gke", "aws"}
type podCondition func(pod *api.Pod) (bool, error)
// podReady returns whether pod has a condition of Ready with a status of true.