-
Notifications
You must be signed in to change notification settings - Fork 26
Added the diff command - for enabling forensic analysis of checkpoint differences in Kubernetes
#192
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
base: main
Are you sure you want to change the base?
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
|
Did you forget to commit some changes? You reference the function |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #192 +/- ##
==========================================
- Coverage 74.37% 69.90% -4.48%
==========================================
Files 13 15 +2
Lines 1284 1422 +138
==========================================
+ Hits 955 994 +39
- Misses 253 352 +99
Partials 76 76 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
The current error is because the test will try to compile each commit. The best thing to do here, because it is all connected, just squash the commits. |
f193499 to
663b693
Compare
342d665 to
6bdd765
Compare
diff command)
diff command)diff command - for enabling forensic analysis of checkpoint differences in Kubernetes
6bdd765 to
5e2f699
Compare
…ting changes in tasks and runtime state. This helps security engineers investigate incidents and understand how containers evolve over time, making state changes more visible and easier to analyze. Signed-off-by: Lorygold <lory.goldoni@gmail.com>
5e2f699 to
7120e7a
Compare
|
Looks good so far. Please add tests. The goal is to have pretty good code coverage with our tests. You could also add the diff feature to the README.md file. |
Introduces a
diffcommand to compare container checkpoints and highlight changes in tasks and runtime state. Supports tree and JSON views, helping security engineers investigate incidents by comparing two checkpoints, making changes more visible and easier to analyze.Resolves #173