mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-05 07:27:21 +00:00
node_e2e: disable serialized image pulls and increase test timeout
This commit is contained in:
@@ -184,7 +184,7 @@ func newHostExecPodSpec(ns, name string) *api.Pod {
|
||||
func waitForPodRunning(c *client.Client, ns string, name string) error {
|
||||
var pod *api.Pod
|
||||
var err error
|
||||
for t := time.Now(); time.Since(t) < time.Minute; time.Sleep(time.Second * 5) {
|
||||
for t := time.Now(); time.Since(t) < time.Minute*2; time.Sleep(time.Second * 5) {
|
||||
pod, err = c.Pods(ns).Get(name)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
if pod == nil {
|
||||
|
||||
Reference in New Issue
Block a user