-
Notifications
You must be signed in to change notification settings - Fork 689
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
internal/dag: Only process Gateways that match configuration #3380
Conversation
Codecov Report
@@ Coverage Diff @@
## main #3380 +/- ##
=======================================
Coverage 75.80% 75.80%
=======================================
Files 98 98
Lines 6543 6556 +13
=======================================
+ Hits 4960 4970 +10
- Misses 1475 1479 +4
+ Partials 108 107 -1
|
Moving to 1.14.0 as this is still a draft, @stevesloka please advise if you would like to get this in to 1.13.0! |
Contour only cache Gateways that match what's configured for Contour. Updates projectcontour#3351 Signed-off-by: Steve Sloka <[email protected]>
0d070a4
to
f2e51eb
Compare
@sunjayBhatia I'd like to get this into 1.13. It was draft since I was stacking PRs. |
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.
couple comments.
Also, just confirming, but this isn't intended to limit the HTTPRoutes
that get processed, right? That's coming in a subsequent PR?
Moved back to 1.13, shouldn't be an issue. |
Signed-off-by: Steve Sloka <[email protected]>
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.
LGTM
…contour#3380) Only cache Gateways that match what's configured for Contour. Updates projectcontour#3351 Signed-off-by: Steve Sloka <[email protected]> Signed-off-by: iyacontrol <[email protected]>
Removes the map of Gateway objects to only store a single since that's all Contour can be configured to use. Then filters on storing the Gateway that matches its configuration.
Created off of #3370 so that should merge first before this.