diff --git a/pkg/minikube/cruntime/rkt.go b/pkg/minikube/cruntime/rkt.go index e0d3b39d3348..c1ef983ccc41 100644 --- a/pkg/minikube/cruntime/rkt.go +++ b/pkg/minikube/cruntime/rkt.go @@ -119,3 +119,8 @@ func (r *Rkt) KillContainers(ids []string) error { func (r *Rkt) StopContainers(ids []string) error { return stopCRIContainers(r.Runner, ids) } + +// ContainerLogCmd returns the command to retrieve the log for a container based on ID +func (r *Rkt) ContainerLogCmd(id string, len int, follow bool) string { + return criContainerLogCmd(id, len, follow) +}