Skip to content

Commit

Permalink
Deprecate --storage-option for --storage-opt
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
rhatdan committed Feb 25, 2017
1 parent 3690f4c commit cf5b0ae
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions cmd/ocid/main.go
Expand Up @@ -57,8 +57,8 @@ func mergeConfig(config *server.Config, ctx *cli.Context) error {
if ctx.GlobalIsSet("storage-driver") {
config.Storage = ctx.GlobalString("storage-driver")
}
if ctx.GlobalIsSet("storage-option") {
config.StorageOptions = ctx.GlobalStringSlice("storage-option")
if ctx.GlobalIsSet("storage-opt") {
config.StorageOptions = ctx.GlobalStringSlice("storage-opt")
}
if ctx.GlobalIsSet("default-transport") {
config.DefaultTransport = ctx.GlobalString("default-transport")
Expand Down Expand Up @@ -175,7 +175,7 @@ func main() {
Usage: "storage driver",
},
cli.StringSliceFlag{
Name: "storage-option",
Name: "storage-opt",
Usage: "storage driver option",
},
cli.StringFlag{
Expand Down
4 changes: 2 additions & 2 deletions docs/ocid.8.md
Expand Up @@ -21,7 +21,7 @@ ocid - Enable OCI Kubernetes Container Runtime daemon
[**--runtime**=[*value*]]
[**--signature-policy**=[*value*]]
[**--storage-driver**=[*value*]]
[**--storage-option**=[*value*]]
[**--storage-opt**=[*value*]]
[**--selinux**]
[**--seccomp-profile**=[*value*]]
[**--apparmor-profile**=[*value*]]
Expand Down Expand Up @@ -101,7 +101,7 @@ ocid is meant to provide an integration path between OCI conformant runtimes and
**--storage-driver**
OCI storage driver (default: "devicemapper")

**--storage-option**
**--storage-opt**
OCI storage driver option (no default)

**--cni-config-dir**=""
Expand Down
4 changes: 2 additions & 2 deletions test/bin2img/bin2img.go
Expand Up @@ -47,7 +47,7 @@ func main() {
Usage: "storage driver",
},
cli.StringSliceFlag{
Name: "storage-option",
Name: "storage-opt",
Usage: "storage option",
},
cli.StringFlag{
Expand All @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions test/copyimg/copyimg.go
Expand Up @@ -42,7 +42,7 @@ func main() {
Usage: "storage driver",
},
cli.StringSliceFlag{
Name: "storage-option",
Name: "storage-opt",
Usage: "storage option",
},
cli.StringFlag{
Expand Down Expand Up @@ -76,7 +76,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")
signaturePolicy := c.GlobalString("signature-policy")
imageName := c.GlobalString("image-name")
addName := c.GlobalString("add-name")
Expand Down

0 comments on commit cf5b0ae

Please sign in to comment.