mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 12:18:16 +00:00 
			
		
		
		
	Merge pull request #44397 from MrHohn/e2e-service-source-ip-timeout
Automatic merge from submit-queue [e2e] Bump up pod deletion time for source pod IP test From #44225. Source pod IP e2e test is pretty flaky lately, and most of the failures seem to be timeout waiting for pod "kube-proxy-mode-detector" to disappear. Didn't found any other thing suspicious. This PR bumps pod deletion timeout to DefaultPodDeletionTimeout, which is 3 minutes. Hopefully it will mitigate the flakes. /assign @freehan **Release note**: ```release-note NONE ```
This commit is contained in:
		@@ -364,7 +364,7 @@ func ProxyMode(f *Framework) (string, error) {
 | 
				
			|||||||
		},
 | 
							},
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	f.PodClient().CreateSync(pod)
 | 
						f.PodClient().CreateSync(pod)
 | 
				
			||||||
	defer f.PodClient().DeleteSync(pod.Name, &metav1.DeleteOptions{}, time.Minute)
 | 
						defer f.PodClient().DeleteSync(pod.Name, &metav1.DeleteOptions{}, DefaultPodDeletionTimeout)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	cmd := "curl -q -s --connect-timeout 1 http://localhost:10249/proxyMode"
 | 
						cmd := "curl -q -s --connect-timeout 1 http://localhost:10249/proxyMode"
 | 
				
			||||||
	stdout, err := RunHostCmd(pod.Namespace, pod.Name, cmd)
 | 
						stdout, err := RunHostCmd(pod.Namespace, pod.Name, cmd)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user