Skip to content

fix: decouple gateway status updates from the reconciler#4767

Merged
arkodg merged 27 commits intoenvoyproxy:mainfrom
zhaohuabing:fix-gateway-status-blocking
Dec 12, 2024
Merged

fix: decouple gateway status updates from the reconciler#4767
arkodg merged 27 commits intoenvoyproxy:mainfrom
zhaohuabing:fix-gateway-status-blocking

Conversation

@zhaohuabing
Copy link
Copy Markdown
Member

@zhaohuabing zhaohuabing commented Nov 22, 2024

Fixes: #4845
Release Note: Yes

@zhaohuabing zhaohuabing requested a review from a team as a code owner November 22, 2024 07:50
@zhaohuabing zhaohuabing changed the title decoup gateway status update fix: decoup gateway status update Nov 22, 2024
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
@codecov
Copy link
Copy Markdown

codecov Bot commented Nov 22, 2024

Codecov Report

Attention: Patch coverage is 76.82927% with 19 lines in your changes missing coverage. Please review.

Project coverage is 66.31%. Comparing base (9b60a67) to head (fb00fb0).
Report is 5 commits behind head on main.

Files with missing lines Patch % Lines
internal/provider/kubernetes/controller.go 57.14% 9 Missing ⚠️
internal/provider/kubernetes/status.go 71.42% 4 Missing and 2 partials ⚠️
internal/infrastructure/runner/runner.go 0.00% 2 Missing ⚠️
internal/provider/kubernetes/kubernetes.go 93.33% 0 Missing and 1 partial ⚠️
internal/provider/kubernetes/predicates.go 94.11% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #4767      +/-   ##
==========================================
+ Coverage   66.24%   66.31%   +0.06%     
==========================================
  Files         209      209              
  Lines       31922    31950      +28     
==========================================
+ Hits        21148    21188      +40     
+ Misses       9523     9512      -11     
+ Partials     1251     1250       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
@zhaohuabing zhaohuabing changed the title fix: decoup gateway status update fix: decoup gateway status updates from the reconciler Nov 22, 2024
Comment thread internal/provider/kubernetes/status.go
@arkodg
Copy link
Copy Markdown
Contributor

arkodg commented Nov 22, 2024

were we deadlocking ?

Comment thread internal/provider/kubernetes/predicates.go Outdated
@zhaohuabing
Copy link
Copy Markdown
Member Author

zhaohuabing commented Nov 23, 2024

were we deadlocking ?

It's my suspicion. I can't reproduce this issue, but based on the description of #4685, it seems that the reconciler has been blocked - the pods changes haven't been propogated to the Envoy through xDS, and the only PR in v1.1.3 that might cause blocking is #4337 .

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
@zhaohuabing zhaohuabing force-pushed the fix-gateway-status-blocking branch from 2b2535b to 8323c0f Compare November 23, 2024 07:20
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
@zhaohuabing zhaohuabing force-pushed the fix-gateway-status-blocking branch 2 times, most recently from 91fe885 to bb391aa Compare November 23, 2024 07:37
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
@zhaohuabing zhaohuabing force-pushed the fix-gateway-status-blocking branch from bb391aa to 7a4c51e Compare November 23, 2024 07:49
@zhaohuabing zhaohuabing marked this pull request as draft November 23, 2024 08:32
@zhaohuabing zhaohuabing force-pushed the fix-gateway-status-blocking branch from d948846 to 0a1f8f2 Compare November 23, 2024 11:47
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
@zhaohuabing zhaohuabing force-pushed the fix-gateway-status-blocking branch from 0a1f8f2 to e406088 Compare November 23, 2024 12:00
@zhaohuabing zhaohuabing marked this pull request as ready for review November 23, 2024 12:21
@zhaohuabing zhaohuabing requested a review from arkodg November 23, 2024 12:21
Comment thread internal/provider/kubernetes/predicates.go
Comment thread internal/provider/kubernetes/predicates.go Outdated
Comment thread internal/gatewayapi/runner/runner.go Outdated
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Comment thread internal/provider/kubernetes/controller.go Outdated
@arkodg arkodg changed the title fix: decoup gateway status updates from the reconciler fix: decouple gateway status updates from the reconciler Dec 11, 2024
zhaohuabing added a commit to zhaohuabing/gateway that referenced this pull request Dec 12, 2024
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
@zhaohuabing zhaohuabing requested a review from arkodg December 12, 2024 07:25
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Logger logging.Logger
// Elected chan is used to signal what a leader is elected
Elected chan struct{}
Elected *sync.WaitGroup
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why we need a pointer here?

Copy link
Copy Markdown
Member Author

@zhaohuabing zhaohuabing Dec 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

internal/infrastructure/runner/runner.go:35:25: copylocks: literal copies lock value from *cfg: github.com/envoyproxy/gateway/internal/infrastructure/runner.Config contains github.com/envoyproxy/gateway/internal/envoygateway/config.Server contains sync.WaitGroup contains sync.noCopy (govet)
        return &Runner{Config: *cfg}

@zhaohuabing
Copy link
Copy Markdown
Member Author

Verified with #4904.

Copy link
Copy Markdown
Contributor

@arkodg arkodg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM thanks !

@arkodg arkodg requested review from a team and guydc December 12, 2024 18:25
@arkodg arkodg merged commit c1ff135 into envoyproxy:main Dec 12, 2024
zhaohuabing added a commit to zhaohuabing/gateway that referenced this pull request Dec 13, 2024
…4767)

* decoup gateway status update

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* decoup gatewayclass status update

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* fix test

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* add comment

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* fix test

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* fix test

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* revert gateway api runner

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* update address and programming status

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* Revert "update address and programming status"

This reverts commit bf3d07e.

* avoid overriding the gateway status from Gateway API translator

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* minor wording

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* minor wording

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* only subscribe to status updates upon acquiring leadership

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* fix lint

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* minor wording

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* address comment

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* address comment

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* minor wording

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* fix lint

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* minor change

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* release note

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

---------

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
(cherry picked from commit c1ff135)
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Proxies connected to the secondary gateway do not receive configuration

4 participants