-
Notifications
You must be signed in to change notification settings - Fork 348
update critools #602
update critools #602
Conversation
Signed-off-by: Mike Brown <[email protected]>
@mikebrow You also need to update all |
Fixes #534. |
Thx will adding a commit for that, was skimming over the prs in cri-tools and got interrupted forgot to finish my skim checking for changes :-) |
Signed-off-by: Mike Brown <[email protected]>
@mikebrow: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
$ crictl sandboxes | ||
SANDBOX ID CREATED STATE NAME NAMESPACE ATTEMPT | ||
$ crictl pods | ||
PODSANDBOX ID CREATED STATE NAME NAMESPACE ATTEMPT | ||
e1c83b0b8d481 2 hours ago SANDBOX_READY nginx-sandbox default 1 | ||
$ crictl inspects e1c8 |
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.
s/inspects/inspectp
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.
Done in #603
crictl_stop_sandboxes() { | ||
for x in $($CRICTL_CLI sandboxes | awk '{ print $1 }' | awk '{if(NR>1)print}') ;do | ||
crictl_stop_pods() { | ||
for x in $($CRICTL_CLI pods | awk '{ print $1 }' | awk '{if(NR>1)print}') ;do | ||
$CRICTL_CLI stops $x |
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.
stopp
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.
Done in #603
crictl_rm_sandboxes() { | ||
for x in $($CRICTL_CLI sandboxes | awk '{ print $1 }' | awk '{if(NR>1)print}') ;do | ||
crictl_rm_pods() { | ||
for x in $($CRICTL_CLI pods | awk '{ print $1 }' | awk '{if(NR>1)print}') ;do | ||
$CRICTL_CLI rms $x |
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.
rmp
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.
Done in #603
LGTM with nits |
Merge this PR directly. I'll address comments in a commit in #603. Just try to make the test back to green as fast as possible. :) |
commit 1: Updates to the latest critools. Uses new critools make install-crictl.
commit 2: change crictl sandboxes to pods; other references to sandboxes
Signed-off-by: Mike Brown [email protected]