diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-21 15:31:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-21 15:31:32 -0500 |
commit | 6fd83de31dab0c60932972c6b26f68fa0bd1871f (patch) | |
tree | d017ed4d59da4a0f0b703430d60b2d2f43484aaa /pkg/domain/infra/tunnel | |
parent | 3ba1a8de8649db2f5cdde80d0f4cf02370e10b8a (diff) | |
parent | 9d31fed5f75186f618e95ab7492ef6bc2b511d5f (diff) | |
download | podman-6fd83de31dab0c60932972c6b26f68fa0bd1871f.tar.gz podman-6fd83de31dab0c60932972c6b26f68fa0bd1871f.tar.bz2 podman-6fd83de31dab0c60932972c6b26f68fa0bd1871f.zip |
Merge pull request #9027 from Luap99/podman-volume-exists
Podman volume exists
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r-- | pkg/domain/infra/tunnel/volumes.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/volumes.go b/pkg/domain/infra/tunnel/volumes.go index f21336828..ffd2c1d35 100644 --- a/pkg/domain/infra/tunnel/volumes.go +++ b/pkg/domain/infra/tunnel/volumes.go @@ -80,3 +80,14 @@ func (ic *ContainerEngine) VolumeList(ctx context.Context, opts entities.VolumeL options := new(volumes.ListOptions).WithFilters(opts.Filter) return volumes.List(ic.ClientCtx, options) } + +// VolumeExists checks if the given volume exists +func (ic *ContainerEngine) VolumeExists(ctx context.Context, nameOrID string) (*entities.BoolReport, error) { + exists, err := volumes.Exists(ic.ClientCtx, nameOrID, nil) + if err != nil { + return nil, err + } + return &entities.BoolReport{ + Value: exists, + }, nil +} |