1 2 3 4 5 6 7 8 9 10 11 12 13
// +build !remoteclient package adapter import ( "context" ) // Reset the container storage back to initial states. // Removes all Pods, Containers, Images and Volumes. func (r *LocalRuntime) Reset() error { return r.Runtime.Reset(context.TODO()) }