-
Notifications
You must be signed in to change notification settings - Fork 40k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds option to set CLOSE_WAIT timeout from kube-proxy, adjusts default timeout to 1 hour #35919
Conversation
Jenkins GCE Node e2e failed for commit 250d44f43cc826ffb4ef5dd7301b54daee2bf5ce. Full PR test history. The magic incantation to run this job again is |
Jenkins Kubemark GCE e2e failed for commit 09ba937498d3718fad05e9ae8cf8dddb3fda2dc0. Full PR test history. The magic incantation to run this job again is |
Jenkins GCI GKE smoke e2e failed for commit 09ba937498d3718fad05e9ae8cf8dddb3fda2dc0. Full PR test history. The magic incantation to run this job again is |
Jenkins GKE smoke e2e failed for commit 8394523d017a2fe38d3c6020d2f07ee7e77239be. Full PR test history. The magic incantation to run this job again is |
Jenkins unit/integration failed for commit ad32c020855f88d5b695892e02ceb9a3d8914676. Full PR test history. The magic incantation to run this job again is |
Jenkins GCE e2e failed for commit ad32c020855f88d5b695892e02ceb9a3d8914676. Full PR test history. The magic incantation to run this job again is |
Jenkins GCI GCE e2e failed for commit ad32c020855f88d5b695892e02ceb9a3d8914676. Full PR test history. The magic incantation to run this job again is |
Jenkins GCE etcd3 e2e failed for commit ad32c020855f88d5b695892e02ceb9a3d8914676. Full PR test history. The magic incantation to run this job again is |
@@ -101,6 +101,9 @@ func SetDefaults_KubeProxyConfiguration(obj *KubeProxyConfiguration) { | |||
if obj.ConntrackTCPEstablishedTimeout == zero { | |||
obj.ConntrackTCPEstablishedTimeout = unversioned.Duration{Duration: 24 * time.Hour} // 1 day (1/5 default) | |||
} | |||
if obj.ConntrackTCPCloseWaitTimeout == zero { | |||
obj.ConntrackTCPCloseWaitTimeout = unversioned.Duration{Duration: 1 * time.Hour} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add a comment explainign why we chose this?
Jenkins verification failed for commit ec01aabf084d64cf88f0fa4dfde206dc08042177. Full PR test history. The magic incantation to run this job again is |
@k8s-bot test this [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue |
cherry-picked in #36510 |
…ck-of-#34375-kubernetes#35285-kubernetes#35420-kubernetes#35608-kubernetes#35919-kubernetes#36161-origin-release-1.4 Automated cherry pick of kubernetes#34375 kubernetes#35285 kubernetes#35420 kubernetes#35608 kubernetes#35919 kubernetes#36161
Fixes issue #32551
This change is