-
Notifications
You must be signed in to change notification settings - Fork 192
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
OCPBUGS-43745: Add support for IdleCloseTerminationPolicy #1166
OCPBUGS-43745: Add support for IdleCloseTerminationPolicy #1166
Conversation
@frobware: This pull request references Jira Issue OCPBUGS-43745, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
/hold Many commits should never merge. |
a7dea46
to
991d367
Compare
/testwith openshift/cluster-ingress-operator/release-4.18/e2e-aws-operator openshift/router#639 |
@frobware,
|
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
991d367
to
052f6b6
Compare
052f6b6
to
0aa6244
Compare
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
0aa6244
to
1072f8f
Compare
f89fbb2
to
9707f72
Compare
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
9707f72
to
77673b3
Compare
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
77673b3
to
3029807
Compare
/assign |
/test e2e-aws-operator |
/test hypershift-e2e-aks |
|
Re: e2e-aws-operator. Last failure was: |
/test e2e-aws-operator |
|
f61bdaf
to
039d723
Compare
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
Pickup openshift/api#2102 % git show 27316471eb72fe8fcf0d44fb5a0602f698f253dc commit 27316471eb72fe8fcf0d44fb5a0602f698f253dc Merge: de9de05a8 b7417509c Author: openshift-merge-bot[bot] <148852131+openshift-merge-bot[bot]@users.noreply.github.com> Date: Wed Dec 18 10:31:50 2024 +0000 Merge pull request #2102 from frobware/OCPBUGS-43745-idle-close-on-response OCPBUGS-43745: Add IdleCloseOnResponse field to IngressControllerSpec Vendor steps: $ go mod edit -replace github.com/openshift/api=github.com/openshift/api@27316471eb72fe8fcf0d44fb5a0602f698f253dc $ go mod tidy $ go mod vendor $ make update
039d723
to
19d9be9
Compare
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
19d9be9
to
7b20e04
Compare
Introduce logic in desiredRouterDeployment to set the environment variable `ROUTER_IDLE_CLOSE_ON_RESPONSE` when the `IdleConnectionTerminationPolicy` field in the IngressController spec is set to `Deferred`. This change enables configuring HAProxy with the `idle-close-on-response` option for better control over idle connection termination behaviour.
7b20e04
to
c0d9605
Compare
/retest |
/retest |
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
/retest-required |
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
@frobware: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Closing this post a discussion with @alebedev87 - the rigidity of the connection state in the test steps and expectations can never hold true when the dynamic config manager (DCM) is enabled. Moving to #1182. |
@frobware: This pull request references Jira Issue OCPBUGS-43745. The bug has been updated to no longer refer to the pull request using the external bug tracker. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
Introduce logic in desiredRouterDeployment to set the environmentvariable
ROUTER_IDLE_CLOSE_ON_RESPONSE
when theIdleConnectionTerminationPolicy
field in the IngressController spec is set toDeferred
. This change enables configuring HAProxy with theidle-close-on-response
option for better control over idle connection termination behaviour.Requires: