mirror of
https://github.com/containers/podman.git
synced 2025-11-15 02:29:16 +08:00
autocomplete podman search --filter
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
13
vendor/github.com/containers/common/libimage/define/search.go
generated
vendored
Normal file
13
vendor/github.com/containers/common/libimage/define/search.go
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
package define
|
||||
|
||||
const (
|
||||
// SearchFilterAutomated is the key for filtering images by their automated attribute.
|
||||
SearchFilterAutomated = "is-automated"
|
||||
// SearchFilterOfficial is the key for filtering images by their official attribute.
|
||||
SearchFilterOfficial = "is-official"
|
||||
// SearchFilterStars is the key for filtering images by stars.
|
||||
SearchFilterStars = "stars"
|
||||
)
|
||||
|
||||
// SearchFilters includes all supported search filters.
|
||||
var SearchFilters = []string{SearchFilterAutomated, SearchFilterOfficial, SearchFilterStars}
|
||||
Reference in New Issue
Block a user