-
Notifications
You must be signed in to change notification settings - Fork 347
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
[api] Add Failover field to Backend #4099
Conversation
Adds a `failover` field to Backend API so we can support Active/Passive Failove backends within xRoutes similar to envoyproxy#4033 Relates to envoyproxy#3055 Signed-off-by: Arko Dasgupta <arko@tetrate.io>
cc @alexwo |
Signed-off-by: Arko Dasgupta <arko@tetrate.io>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4099 +/- ##
==========================================
- Coverage 67.94% 67.93% -0.02%
==========================================
Files 187 187
Lines 23029 23029
==========================================
- Hits 15647 15644 -3
- Misses 6266 6268 +2
- Partials 1116 1117 +1 ☔ View full report in Codecov by Sentry. |
// the health of the active backends falls below 72%. | ||
// | ||
// +optional | ||
Failover *bool `json:"failover,omitempty"` |
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.
not imeplemented hide? Or do you plan on implementing this in the near future?
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.
plan on adding it in a follow up PR but I'll add the tag
Signed-off-by: Arko Dasgupta <arko@tetrate.io>
Hello, I'm using the Envoy Gateway version 1.1.2 and (according to |
should be v1.2 |
If someone wants to test this feature before the 1.2 release, it is possible to do that by installing v0.0.0-latest Helm Chart? Thanks again! |
yes, normally new feature won't be backported. |
Sorry. I didn't understand. But this HTTPRoute
won't apply
Did I misunderstand the intended placement of the Failover: attribute? |
hey the field was renamed to |
Adds a
failover
field to Backend API so we can support Active/Passive Failove backends within xRoutes similar to #4033Relates to #3055