-
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 (Go http.Client) #1182
OCPBUGS-43745: Add support for IdleCloseTerminationPolicy (Go http.Client) #1182
Conversation
Enhanced response handlers (`/` and `/healthz`) to include pod-specific headers (`x-pod-name` and `x-pod-namespace`). Introduced new environment variables to control HTTP and HTTPS listeners: - `HTTP2_TEST_SERVER_ENABLE_HTTP_LISTENER`: Enables/disables the HTTP listener. - `HTTP2_TEST_SERVER_ENABLE_HTTPS_LISTENER`: Enables/disables the HTTPS listener. Improved error handling to log and terminate if no listeners are enabled, providing flexibility in determining which listeners to activate.
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
@frobware: This pull request references Jira Issue OCPBUGS-43745, which is valid. 3 validation(s) were run on this bug
Requesting review from QA contact: 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 |
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
c2fb259
to
ec270a8
Compare
/retest |
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
/retest-required |
1 similar comment
/retest-required |
/test e2e-aws-operator |
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
/test e2e-aws-operator |
/test e2e-azure-operator |
/test e2e-gcp-operator |
ec270a8
to
6879c2f
Compare
/testwith openshift/cluster-ingress-operator/master/e2e-aws-operator openshift/router#639 |
ed35fca
to
e3a69e3
Compare
FWIW, I tried using /testwith without an additional PR and that did not launch a job, so I'll just continue to use the already merged router PR. |
/retest-required |
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.
aab1312
to
1385b13
Compare
@alebedev87 I pushed a commit that separates the test from a parallel test with parallel subtests into two discrete tests--that still run in parallel. This change allows me to reliably piece together the test output when reviewing CI jobs. I'm using https://github.com/frobware/go-test-sift to collate parallel test output from CI logs (and locally). I haven't seen |
/testwith openshift/cluster-ingress-operator/master/e2e-gcp-operator openshift/router#639 |
/lgtm |
/label acknowledge-critical-fixes-only |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alebedev87 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest-required |
e2e-aws-ovn-serial and e2e-hypershift are failing in an empty PR: #1185 (comment) |
1 similar comment
Did pre-merge test and looks good.
/label qe-approved |
@frobware: This pull request references Jira Issue OCPBUGS-43745, which is valid. 3 validation(s) were run on this bug
Requesting review from QA contact: 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. |
The e2e-aws-ovn-serial job is failing with "Image signature workflow can push a signed image to openshift registry and verify it" - related links: |
@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. |
cba3e44
into
openshift:master
@frobware: Jira Issue OCPBUGS-43745: All pull requests linked via external trackers have merged: Jira Issue OCPBUGS-43745 has been moved to the MODIFIED state. 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. |
[ART PR BUILD NOTIFIER] Distgit: ose-cluster-ingress-operator |
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.Add an e2e test
Test_IdleConnectionTerminationPolicy
to verify the behaviour.Requires: