Deprecate --storage-option for --storage-opt
container-storage-setup (Formerly docker-storage-setup) is being converted to run with container runtimes outside of docker. Specifically we want to use it with CRI-O/ocid. It does not know anything about the container runtimes it is generating options for, so it generates them based on the storage CLI of docker. I see no reason to have the storage option for ocid to be different and we can just depracate the option for now. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
parent
3690f4c971
commit
cf5b0ae57f
4 changed files with 9 additions and 9 deletions
|
@ -47,7 +47,7 @@ func main() {
|
|||
Usage: "storage driver",
|
||||
},
|
||||
cli.StringSliceFlag{
|
||||
Name: "storage-option",
|
||||
Name: "storage-opt",
|
||||
Usage: "storage option",
|
||||
},
|
||||
cli.StringFlag{
|
||||
|
@ -72,7 +72,7 @@ func main() {
|
|||
rootDir := c.GlobalString("root")
|
||||
runrootDir := c.GlobalString("runroot")
|
||||
storageDriver := c.GlobalString("storage-driver")
|
||||
storageOptions := c.GlobalStringSlice("storage-option")
|
||||
storageOptions := c.GlobalStringSlice("storage-opt")
|
||||
imageName := c.GlobalString("image-name")
|
||||
sourceBinary := c.GlobalString("source-binary")
|
||||
imageBinary := c.GlobalString("image-binary")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue