Added the diff command - for enabling forensic analysis of checkpoint differences in Kubernetes #192
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 76.00% 74.41% -1.60%
==========================================
Files 13 15 +2
Lines 1288 1661 +373
==========================================
+ Hits 979 1236 +257
- Misses 232 319 +87
- Partials 77 106 +29 ☔ 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
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. |
Library Size Check FailedThe library size increase exceeds the allowed threshold. Size Check Output |
2ee4dce to
f2e5f9e
Compare
|
Hello everybody, I've added bats tests and the Let me know! |
|
The library size CI check failure is not a problem. This should go away if you do a rebase ( From my point of view this is almost ready. Some smaller changes would be nice:
The upper border seems to be on character shorter than the lower border.
With these changes I think we could merge this is a first step and then if necessary adapt it to future needs. |
f2e5f9e to
9979fc7
Compare
Forensic investigations typically require analyzing the changes between two or more checkpoints to understand how the container state has changed over time. This method allows investigators to infer different types of events that occurred during a security incident and make educated conclusions. The `diff` command aims to identify and highlight such checkpoint changes and make them easier to analyze. Signed-off-by: Lorygold <lory.goldoni@gmail.com> Signed-off-by: Radostin Stoyanov <radostin@redhat.com>
9979fc7 to
4c56c27
Compare
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