Merge pull request #16243 from alexlarsson/volume-create-ignore

Add podman volume create --ignore
This commit is contained in:
OpenShift Merge Robot
2022-10-26 15:00:51 -04:00
committed by GitHub
11 changed files with 80 additions and 18 deletions

View File

@ -17,10 +17,11 @@ type Volume struct {
config *VolumeConfig
state *VolumeState
valid bool
plugin *plugin.VolumePlugin
runtime *Runtime
lock lock.Locker
ignoreIfExists bool
valid bool
plugin *plugin.VolumePlugin
runtime *Runtime
lock lock.Locker
}
// VolumeConfig holds the volume's immutable configuration.