-
Notifications
You must be signed in to change notification settings - Fork 880
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
feat: Implement Issue #1779: Add MinReplicas option to SetCanaryScale #1938
feat: Implement Issue #1779: Add MinReplicas option to SetCanaryScale #1938
Conversation
…aryScale Signed-off-by: Shlomo Sanders <[email protected]>
Codecov ReportBase: 81.55% // Head: 81.55% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #1938 +/- ##
==========================================
- Coverage 81.55% 81.55% -0.01%
==========================================
Files 124 124
Lines 18931 18947 +16
==========================================
+ Hits 15439 15452 +13
- Misses 2702 2703 +1
- Partials 790 792 +2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
37e5b45
to
93c7595
Compare
Signed-off-by: Shlomo Sanders <[email protected]>
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Signed-off-by: Shlomo Sanders <[email protected]>
dcfcd9e
to
eab0416
Compare
Signed-off-by: Shlomo Sanders <[email protected]>
Signed-off-by: Shlomo Sanders <[email protected]>
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
@jessesuen - can you please review this? We need this in order to ensure high availability when using TrafficRoutedCanary @nissy34 - FYI |
This PR is stale because it has been open 90 days with no activity. |
I'm surprised that no one else has this issue. We worked around it so far, by adding a default-backend service to the nginx ingress which routes to all of pods (both stable and canary), so that if one of the replicasets has only one POD and it goes down (e.g. it is being moved to another node), the requests will get routed to the other pods via the default-backend. However, I'm not sure that other traffic-routing options (e.g. ALB) have a similar 'default-backend' concept |
f930113
to
0f7ebb0
Compare
Signed-off-by: Shlomo Sanders <[email protected]>
Signed-off-by: Shlomo Sanders <[email protected]>
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
@zachaller - can you take a look at this? We are currently building from a fork, and would like this to be eventually included |
Based on #1779 (comment), this can be replaced by |
closing in favor of #2448 |
Implements issue #1779
See #1779 for Use Cases