mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 14:37:00 +00:00
kubeadm: crictl reset commands fixes
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
1b950d1e8e
commit
0fec56c946
@ -221,14 +221,14 @@ func resetWithCrictl(execer utilsexec.Interface, dockerCheck preflight.Checker,
|
|||||||
if strings.TrimSpace(s) == "" {
|
if strings.TrimSpace(s) == "" {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
params = []string{"-r", criSocketPath, "stop", s}
|
params = []string{"-r", criSocketPath, "stopp", s}
|
||||||
glog.V(1).Infof("[reset] Executing command %s %s", crictlPath, strings.Join(params, " "))
|
glog.V(1).Infof("[reset] Executing command %s %s", crictlPath, strings.Join(params, " "))
|
||||||
if err := execer.Command(crictlPath, params...).Run(); err != nil {
|
if err := execer.Command(crictlPath, params...).Run(); err != nil {
|
||||||
glog.Infof("[reset] failed to stop the running containers using crictl: %v. Trying to use docker instead", err)
|
glog.Infof("[reset] failed to stop the running containers using crictl: %v. Trying to use docker instead", err)
|
||||||
resetWithDocker(execer, dockerCheck)
|
resetWithDocker(execer, dockerCheck)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
params = []string{"-r", criSocketPath, "rm", s}
|
params = []string{"-r", criSocketPath, "rmp", s}
|
||||||
glog.V(1).Infof("[reset] Executing command %s %s", crictlPath, strings.Join(params, " "))
|
glog.V(1).Infof("[reset] Executing command %s %s", crictlPath, strings.Join(params, " "))
|
||||||
if err := execer.Command(crictlPath, params...).Run(); err != nil {
|
if err := execer.Command(crictlPath, params...).Run(); err != nil {
|
||||||
glog.Infof("[reset] failed to remove the running containers using crictl: %v. Trying to use docker instead", err)
|
glog.Infof("[reset] failed to remove the running containers using crictl: %v. Trying to use docker instead", err)
|
||||||
|
Loading…
Reference in New Issue
Block a user