summaryrefslogtreecommitdiff
path: root/pkg/adapter/reset.go
blob: 0decc3d1541a060039fc15dc7a602661b7b88686 (plain)
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())
}