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

API keys: Migrate API keys to service accounts at startup #96924

Merged
merged 7 commits into from
Feb 5, 2025

Conversation

dmihai
Copy link
Contributor

@dmihai dmihai commented Nov 22, 2024

----------------------------------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:

  • It works as expected from a user's perspective.
  • If this is a pre-GA feature, it is behind a feature toggle.
  • The docs are updated, and if this is a notable improvement, it's added to our What's New doc.

Sorry, something went wrong.

@dmihai dmihai marked this pull request as ready for review November 29, 2024 16:13
@dmihai dmihai requested a review from a team as a code owner November 29, 2024 16:13
@dmihai dmihai requested review from cinaglia and removed request for a team November 29, 2024 16:13
@github-actions github-actions bot added this to the 11.4.x milestone Nov 29, 2024
Copy link
Contributor

@eleijonmarck eleijonmarck left a 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

@dmihai
Copy link
Contributor Author

dmihai commented Dec 2, 2024

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.

@dmihai
Copy link
Contributor Author

dmihai commented Dec 10, 2024

This will be merged after 31 Jan 2025.

Copy link
Contributor

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!

@github-actions github-actions bot added the stale Issue with no recent activity label Jan 10, 2025
@dmihai
Copy link
Contributor Author

dmihai commented Jan 10, 2025

Adding this comment here to prevent this PR from being closed due to no activity.

@dmihai dmihai removed the stale Issue with no recent activity label Jan 10, 2025
Copy link
Contributor

@linoman linoman left a 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)
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
sa.log.Debug("Migrating API keys for org", "orgId", o.ID)
sa.log.Debug("Migrating API keys for an org", "orgId", o.ID)

Copy link
Contributor Author

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)
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
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)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done

@dmihai dmihai requested a review from mgyongyosi February 4, 2025 10:16
@dmihai dmihai requested a review from mgyongyosi February 4, 2025 12:20
@dmihai dmihai requested a review from mgyongyosi February 4, 2025 13:08
Copy link
Contributor

@mgyongyosi mgyongyosi left a comment

Choose a reason for hiding this comment

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

LGTM 🚀

@dmihai dmihai modified the milestones: 11.4.x, 11.6.x Feb 4, 2025
@dmihai dmihai merged commit 5ad31eb into main Feb 5, 2025
13 checks passed
@dmihai dmihai deleted the dmihai/api-key-auto-migrate branch February 5, 2025 08:55
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.

[Epic] APIKeys: Sunsetting of API keys 🌤️
4 participants