feat(load-balancer): support http timeout-idle annotation#1301
Draft
lukasmetzner wants to merge 2 commits into
Draft
feat(load-balancer): support http timeout-idle annotation#1301lukasmetzner wants to merge 2 commits into
lukasmetzner wants to merge 2 commits into
Conversation
Add the `load-balancer.hetzner.cloud/http-timeout-idle` annotation to configure the idle timeout for the client and server side of an HTTP/HTTPS Load Balancer service. It is documented as the new `duration` type (a Go duration string, e.g. `30s`). Closes #1233
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1301 +/- ##
==========================================
+ Coverage 71.61% 71.65% +0.04%
==========================================
Files 26 26
Lines 2776 2787 +11
==========================================
+ Hits 1988 1997 +9
- Misses 613 614 +1
- Partials 175 176 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
lukasmetzner
marked this pull request as draft
July 23, 2026 11:51
jooola
reviewed
Jul 23, 2026
| | `load-balancer.hetzner.cloud/uses-proxyprotocol` | `bool` | `false` | `No` | Specifies if the Load Balancer services should use the proxy protocol. | | ||
| | `load-balancer.hetzner.cloud/http-cookie-name` | `string` | `-` | `No` | Specifies the cookie name when using HTTP or HTTPS as protocol. | | ||
| | `load-balancer.hetzner.cloud/http-cookie-lifetime` | `int` | `-` | `No` | Specifies the lifetime of the HTTP cookie. | | ||
| | `load-balancer.hetzner.cloud/http-timeout-idle` | `duration` | `-` | `No` | Specifies the idle timeout for the client and server side. | |
Member
There was a problem hiding this comment.
Could we document the allowed range for this value?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add the
load-balancer.hetzner.cloud/http-timeout-idleannotation toconfigure the idle timeout for the client and server side of an HTTP/HTTPS
Load Balancer service.
It is documented as the new
durationtype (a Go duration string, e.g.30s).Closes #1233