(cmd ...string)
| 612 | } |
| 613 | |
| 614 | func (a *containerdActions) RunBusybox(cmd ...string) string { |
| 615 | return a.Run(ContainerdRunArgs{ |
| 616 | Image: "registry.k8s.io/busybox:1.27", |
| 617 | }, cmd...) |
| 618 | } |
| 619 | |
| 620 | // Run creates and starts a containerd container using the ctr CLI. |
| 621 | // It uses the configured namespace (default "moby" for Docker-in-Docker environments). |