Skip to content
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

fetch SAs from apiserver #242

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

modulitos
Copy link
Contributor

@modulitos modulitos commented Oct 21, 2024

Issue #, if available:
#174

Description of changes:
Enhances the implementation introduced in #236 so that we can fetch missing service accounts from the apiserver. Retains the existing guarantees that we won't fetch multiple service accounts concurrently, minimizing load on the apiserver.

This feature is still in shadow mode (off by default).

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@modulitos modulitos requested a review from a team as a code owner October 21, 2024 02:57
@modulitos modulitos force-pushed the notifications-enhancement branch 2 times, most recently from 5af4ac8 to 5020bec Compare October 21, 2024 04:00
@modulitos modulitos force-pushed the notifications-enhancement branch 2 times, most recently from ed8a585 to 0178602 Compare November 14, 2024 22:26
}

go func() {
for req := range saFetchRequests {
Copy link
Contributor

Choose a reason for hiding this comment

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

This would mean we are making only one request at a time to apiserver right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Wrapped this in a goroutine - thanks for the catch 💯

defer cancel()

klog.V(5).Infof("fetching SA: %s", req.CacheKey())
saList, err := getter.ServiceAccounts(req.Namespace).List(
Copy link
Contributor

Choose a reason for hiding this comment

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

why List? why can't we use Get?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I moved this to Get

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants