diff --git a/glanceclient/v1/images.py b/glanceclient/v1/images.py index 26fe7d65..3ddfbcaf 100644 --- a/glanceclient/v1/images.py +++ b/glanceclient/v1/images.py @@ -30,7 +30,7 @@ UPDATE_PARAMS = ('name', 'disk_format', 'container_format', 'min_disk', # compatibility with the legacy client library 'deleted') -CREATE_PARAMS = UPDATE_PARAMS + ('id',) +CREATE_PARAMS = UPDATE_PARAMS + ('id', 'store') DEFAULT_PAGE_SIZE = 20 diff --git a/glanceclient/v1/shell.py b/glanceclient/v1/shell.py index ff0c2a60..d2c9c83f 100644 --- a/glanceclient/v1/shell.py +++ b/glanceclient/v1/shell.py @@ -140,6 +140,8 @@ def do_image_download(gc, args): help='ID of image to reserve.') @utils.arg('--name', metavar='', help='Name of image.') +@utils.arg('--store', metavar='', + help='Store to upload image to.') @utils.arg('--disk-format', metavar='', help='Disk format of image. ' + DISK_FORMATS) @utils.arg('--container-format', metavar='',