diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-22 11:02:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 11:02:19 -0500 |
commit | 07663f74c48d11732a3330248f837d5abf86fe9c (patch) | |
tree | 2446603ff11ddb7517fefee7c11fb5cf287fbbb7 /pkg/domain/entities | |
parent | cfdb8fb29b34010206ea26f38e130d3e24403abf (diff) | |
parent | 5923656f321a9ca7b222c81cdb5f3387cc7cd3ad (diff) | |
download | podman-07663f74c48d11732a3330248f837d5abf86fe9c.tar.gz podman-07663f74c48d11732a3330248f837d5abf86fe9c.tar.bz2 podman-07663f74c48d11732a3330248f837d5abf86fe9c.zip |
Merge pull request #8724 from bblenard/support-volume-filters-in-system-prune
Add volume filters to system prune
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/system.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/domain/entities/system.go b/pkg/domain/entities/system.go index 5266dc4cf..d5118f6a8 100644 --- a/pkg/domain/entities/system.go +++ b/pkg/domain/entities/system.go @@ -17,9 +17,9 @@ type ServiceOptions struct { // SystemPruneOptions provides options to prune system. type SystemPruneOptions struct { - All bool - Volume bool - ContainerPruneOptions + All bool + Volume bool + Filters map[string][]string `json:"filters" schema:"filters"` } // SystemPruneReport provides report after system prune is executed. |