-
Notifications
You must be signed in to change notification settings - Fork 42
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
[8.18](backport #3090) cnvm: Delete snapshots after scanning them #3124
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Summary of your changes Fixes various underlying issues with CNVM snapshot deletion. The logic here is to do a best-effort attempt to clean up snapshots created during the run both continuously (after we are done scanning the snapshot) and on shutdown. Cleaning old snapshots that we don't use anymore is part of #3105. Issues fixed: - `internal/flavors/vulnerability.go`: Wait for `Run()` to finish, this ensures that final snapshot clean-up is done after execution finishes - `internal/resources/providers/awslib/ec2/provider.go`: Give extra retries to snapshot deletion, mainly avoiding "too many requests" errors - `internal/vulnerability/snapshot.go`: New snapshot manager to handle creation, deletion and clean-up of snapshots. The deletion extends the `context.Context` with an extra 30s timeout to give a grace period to clean-up snapshots during shutdown/restart. - `internal/vulnerability/replicator.go`: Add dependency to the snapshot manager instead of `provider` to track created snapshots - `internal/vulnerability/scanner.go`: Delete snapshot after scanning - `internal/vulnerability/worker.go`: `defer` a call snapshot manager's cleanup ### Screenshot/Data 1. The way I verified we avoid leftover snapshots is to change the name of the snapshots: ```diff diff --git a/internal/resources/providers/awslib/ec2/provider.go b/internal/resources/providers/awslib/ec2/provider.go index 14abc5bf..3faeef7d 100644 --- a/internal/resources/providers/awslib/ec2/provider.go +++ b/internal/resources/providers/awslib/ec2/provider.go @@ -78,7 +78,7 @@ func (p *Provider) CreateSnapshots(ctx context.Context, ins *Ec2Instance) ([]EBS { ResourceType: "snapshot", Tags: []types.Tag{ - {Key: aws.String("Name"), Value: aws.String(fmt.Sprintf("elastic-vulnerability-%s", *ins.InstanceId))}, + {Key: aws.String("Name"), Value: aws.String(fmt.Sprintf("orestis-elastic-vulnerability-%s", *ins.InstanceId))}, {Key: aws.String("Workload"), Value: aws.String("Cloudbeat Vulnerability Snapshot")}, }, }, ``` 2. Deploy cloudbeat based on this PR + the diff above. 3. Do various tests like: - kill cloudbeat while its running - restart the agent - run continuously over the weekend (note: CNVM takes quite a while to finish a single cycle) 4. Verify no leftovers are with command: ```shell aws ec2 describe-snapshots --owner-ids self --query 'Snapshots[?StartTime>=`2025-03-10` && Tags[?Key==`Name` && starts_with(Value, `orestis-elastic-vulnerability-`)]] | [].SnapshotId' --output table ``` ### Related Issues See `Development` to the right ### Checklist - [x] I have added tests that prove my fix is effective or that my feature works - [x] I have added the necessary README/documentation (if appropriate) (cherry picked from commit 68ff40d) # Conflicts: # internal/resources/providers/awslib/config.go # internal/vulnerability/cleaner_test.go
Cherry-pick of 68ff40d has failed:
To fix up this pull request, you can check it out locally. See documentation: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally |
This pull request has not been merged yet. Could you please review and merge it @orestisfl? 🙏 |
We've decided to only backport this to 8.x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary of your changes
Fixes various underlying issues with CNVM snapshot deletion. The logic here is to do a best-effort attempt to clean up snapshots created during the run both continuously (after we are done scanning the snapshot) and on shutdown. Cleaning old snapshots that we don't use anymore is part of #3105. Issues fixed:
internal/flavors/vulnerability.go
: Wait forRun()
to finish, this ensures that final snapshot clean-up is done after execution finishesinternal/resources/providers/awslib/ec2/provider.go
: Give extra retries to snapshot deletion, mainly avoiding "too many requests" errorsinternal/vulnerability/snapshot.go
: New snapshot manager to handle creation, deletion and clean-up of snapshots. The deletion extends thecontext.Context
with an extra 30s timeout to give a grace period to clean-up snapshots during shutdown/restart.internal/vulnerability/replicator.go
: Add dependency to the snapshot manager instead ofprovider
to track created snapshotsinternal/vulnerability/scanner.go
: Delete snapshot after scanninginternal/vulnerability/worker.go
:defer
a call snapshot manager's cleanupScreenshot/Data
aws ec2 describe-snapshots --owner-ids self --query 'Snapshots[?StartTime>=`2025-03-10` && Tags[?Key==`Name` && starts_with(Value, `orestis-elastic-vulnerability-`)]] | [].SnapshotId' --output table
Related Issues
See
Development
to the rightChecklist
This is an automatic backport of pull request #3090 done by [Mergify](https://mergify.com).