Merge pull request #2100 from pwittrock/master

runfns: sort ContainerFilters depth first
This commit is contained in:
Kubernetes Prow Robot
2020-01-14 14:06:36 -08:00
committed by GitHub
5 changed files with 487 additions and 154 deletions

View File

@@ -152,6 +152,10 @@ type ContainerFilter struct {
checkInput func(string)
}
func (c ContainerFilter) String() string {
return c.Image
}
// StorageMount represents a container's mounted storage option(s)
type StorageMount struct {
// Type of mount e.g. bind mount, local volume, etc.