-
Notifications
You must be signed in to change notification settings - Fork 12.5k
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
API keys: Migrate API keys to service accounts at startup #96924
Conversation
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.
First i thought, hmm maybe we should not migrate on startup and have a way to control it.
But this time, i feel we need to migrate on startup regardless of what happens. Users should by now have understood the change and should be ready for it
I thought about this as well. I think we should keep it simple and do this migration on merge. I don't see any advantage in controlling this functionality using a feature flag or similar since we want to do the migration for all users after a fixed date with no exceptions. |
This will be merged after 31 Jan 2025. |
This pull request has been automatically marked as stale because it has not had activity in the last 30 days. It will be closed in 2 weeks if no further activity occurs. Please feel free to give a status update or ping for review. Thank you for your contributions! |
Adding this comment here to prevent this PR from being closed due to no activity. |
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.
great job! I've added some nits that are not needed for merging
} | ||
|
||
for _, o := range orgs { | ||
sa.log.Debug("Migrating API keys for org", "orgId", o.ID) |
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.
sa.log.Debug("Migrating API keys for org", "orgId", o.ID) | |
sa.log.Debug("Migrating API keys for an org", "orgId", o.ID) |
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.
done
continue | ||
} | ||
if result.Failed > 0 { | ||
sa.log.Warn("Some API keys failed to be migrated", "keys_total", result.Total, "keys_failed", result.Failed, "orgId", o.ID) |
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.
sa.log.Warn("Some API keys failed to be migrated", "keys_total", result.Total, "keys_failed", result.Failed, "orgId", o.ID) | |
sa.log.Warn("Some API keys failed to be migrated", "total_keys", result.Total, "failed_keys", result.Failed, "orgId", o.ID) |
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.
done
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 🚀
----------------------------------To be merged after 31 Jan 2025-----------------------------------
What is this feature?
This adds the functionality to migrate all API keys to service accounts for all orgs. The new function is executed at startup as part of the
ServiceAccounts
Service.Why do we need this feature?
To force migrate all remaining API keys to service accounts.
Who is this feature for?
All users.
Which issue(s) does this PR fix?:
Fixes #53567.
Special notes for your reviewer:
Please check that: