-
Notifications
You must be signed in to change notification settings - Fork 346
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
Add new
method to instantiate Delete command
#262
Conversation
@alfonsoros88 Thanks for your contribution! There are |
Codecov Report
@@ Coverage Diff @@
## main #262 +/- ##
===========================================
+ Coverage 39.85% 74.13% +34.27%
===========================================
Files 15 43 +28
Lines 1405 6596 +5191
Branches 385 385
===========================================
+ Hits 560 4890 +4330
- Misses 665 1630 +965
+ Partials 180 76 -104 |
@utam0k sorry for the delay! We were trying to use youki's commands by including it as a library dependency to our project. We thought it would be easier to handle it that way instead of using the For creating containers we are not using the |
@alfonsoros88 Delete {
contaienr_id,
force,
} |
@utam0k we are trying to use youki in https://github.com/esrlabs/northstar. This project uses its own "kind" of containers, we wanted to add support for OCI containers by using youki underneath. It is not possible to instantiate |
@alfonsoros88 I understand. Let's provide it. Could you add a comment to the effect that you are providing |
@utam0k sure thing! Do you refer to a commit comment or as a doc comment for the |
Please do so in the doc comments. |
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.
Thanks!
We were trying to use
youki
as a library and notice that theDelete
command was missing thenew
method. It can not be instantiated otherwise. This patch also improves the api consistency with other commands.