Merge pull request #508 from SvenDowideit/add-names-to-description

Add driver names to a few flag descriptions to make is consistent
This commit is contained in:
Evan Hazlett 2015-02-09 10:22:20 -05:00
commit 8630591272
3 changed files with 7 additions and 7 deletions

View File

@ -65,7 +65,7 @@ func GetCreateFlags() []cli.Flag {
},
cli.StringFlag{
Name: "google-username",
Usage: "User Name",
Usage: "GCE User Name",
Value: "docker-user",
EnvVar: "GOOGLE_USERNAME",
},

View File

@ -48,24 +48,24 @@ func GetCreateFlags() []cli.Flag {
return []cli.Flag{
cli.StringFlag{
Name: "hyper-v-boot2docker-url",
Usage: "The URL of the boot2docker image. Defaults to the latest available version.",
Usage: "Hyper-V URL of the boot2docker image. Defaults to the latest available version.",
},
cli.StringFlag{
Name: "hyper-v-boot2docker-location",
Usage: "Local boot2docker iso. Overrides URL.",
Usage: "Hyper-V local boot2docker iso. Overrides URL.",
},
cli.StringFlag{
Name: "hyper-v-virtual-switch",
Usage: "Name of virtual switch. Defaults to first found.",
Usage: "Hyper-V virtual switch name. Defaults to first found.",
},
cli.IntFlag{
Name: "hyper-v-disk-size",
Usage: "Size of disk for host in MB.",
Usage: "Hyper-V disk size for host in MB.",
Value: 20000,
},
cli.IntFlag{
Name: "hyper-v-memory",
Usage: "Size of memory for host in MB.",
Usage: "Hyper-V memory size for host in MB.",
Value: 1024,
},
}

View File

@ -176,7 +176,7 @@ func GetCreateFlags() []cli.Flag {
// the BoolFlag default value is always false
cli.StringFlag{
Name: "openstack-docker-install",
Usage: "Set if docker have to be installed on the machine",
Usage: "Openstack should install docker on the machine",
Value: "true",
},
}