mirror of
https://github.com/containers/podman.git
synced 2025-08-02 01:09:21 +08:00
When you change the storage driver we ignore the storage-options
The storage driver and the storage options in storage.conf should match, but if you change the storage driver via the command line then we need to nil out the default storage options from storage.conf. If the user wants to change the storage driver and use storage options, they need to specify them on the command line. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -67,7 +67,10 @@ func getRuntime(ctx context.Context, c *cliconfig.PodmanCommand, renumber bool,
|
||||
if c.Flags().Changed("storage-driver") {
|
||||
storageSet = true
|
||||
storageOpts.GraphDriverName = c.GlobalFlags.StorageDriver
|
||||
// Overriding the default storage driver caused GraphDriverOptions from storage.conf to be ignored
|
||||
storageOpts.GraphDriverOptions = []string{}
|
||||
}
|
||||
// This should always be checked after storage-driver is checked
|
||||
if len(c.GlobalFlags.StorageOpts) > 0 {
|
||||
storageSet = true
|
||||
storageOpts.GraphDriverOptions = c.GlobalFlags.StorageOpts
|
||||
|
@ -360,7 +360,8 @@ func (c *Container) setupStorage(ctx context.Context) error {
|
||||
}
|
||||
return false
|
||||
}
|
||||
defOptions, err := storage.GetDefaultMountOptions()
|
||||
|
||||
defOptions, err := storage.GetMountOptions(c.runtime.store.GraphDriverName(), c.runtime.store.GraphOptions())
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "error getting default mount options")
|
||||
}
|
||||
|
Reference in New Issue
Block a user