Merge pull request #3688 from afbjorklund/rkt-log
Implement CRI method ContainerLogCmd for rktpull/3691/head
commit
32fbdbd97b
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue