-
Notifications
You must be signed in to change notification settings - Fork 690
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
cmd/contour: pass pointers to StatusAddressUpdater #3412
Merged
Merged
Conversation
This file contains 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
Codecov Report
@@ Coverage Diff @@
## main #3412 +/- ##
==========================================
+ Coverage 75.45% 75.49% +0.04%
==========================================
Files 98 98
Lines 6592 6591 -1
==========================================
+ Hits 4974 4976 +2
+ Misses 1510 1508 -2
+ Partials 108 107 -1
|
I've confirmed manually that with v1.13.0, changes to the LB IP are not immediately reflected in an |
stevesloka
approved these changes
Feb 26, 2021
abhide
approved these changes
Feb 26, 2021
sunjayBhatia
approved these changes
Feb 26, 2021
Fixes an issue where non-pointers were being passed to the StatusAddressUpdater when the load balancer address changed, which was resulting in HTTPProxies/Ingresses not immediately getting updated with the new address. Fixes projectcontour#3411. Signed-off-by: Steve Kriss <krisss@vmware.com>
6f74b31
to
c3605e4
Compare
skriss
added a commit
to skriss/contour
that referenced
this pull request
Mar 1, 2021
Fixes an issue where non-pointers were being passed to the StatusAddressUpdater when the load balancer address changed, which was resulting in HTTPProxies/Ingresses not immediately getting updated with the new address. Fixes projectcontour#3411. Signed-off-by: Steve Kriss <krisss@vmware.com>
skriss
added a commit
that referenced
this pull request
Mar 1, 2021
* internal/xdscache: include global rate limits for secure vhosts (#3410) Fixes a bug where global rate limit policies were being ignored when defined at the virtual host level on secure vhosts. Fixes #3409. Signed-off-by: Steve Kriss <krisss@vmware.com> * cmd/contour: pass pointers to StatusAddressUpdater (#3412) Fixes an issue where non-pointers were being passed to the StatusAddressUpdater when the load balancer address changed, which was resulting in HTTPProxies/Ingresses not immediately getting updated with the new address. Fixes #3411. Signed-off-by: Steve Kriss <krisss@vmware.com> * examples: update Envoy to 1.17.1 (#3417) Signed-off-by: Steve Kriss <krisss@vmware.com>
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.
Fixes an issue where non-pointers were being passed to
the StatusAddressUpdater when the load balancer address
changed, which was resulting in HTTPProxies/Ingresses
not immediately getting updated with the new address.
Fixes #3411.
Signed-off-by: Steve Kriss krisss@vmware.com