summaryrefslogtreecommitdiff
path: root/glanceclient/v1
diff options
context:
space:
mode:
authorStuart McLaren <stuart.mclaren@hp.com>2014-10-08 13:44:58 +0000
committerStuart McLaren <stuart.mclaren@hp.com>2014-10-08 13:58:22 +0000
commit597da8aa5514b7e8ba05426ac3c36f09597b8b8a (patch)
tree2365ccbcf6ac7112a631ebbee947de48143d4f0e /glanceclient/v1
parenta23a364e29bd4e7370f37135dccae3f378a3913a (diff)
downloadpython-glanceclient-597da8aa5514b7e8ba05426ac3c36f09597b8b8a.tar.gz
'--public' ignored on image create
Currently, if '--public' is specified, an image is created but it is not marked as public: $ glance image-create --public --name minus-minus-public --disk-format raw \ --container-format bare < /etc/fstab +------------------+--------------------------------------+ | Property | Value | +------------------+--------------------------------------+ . . . | is_public | False | . . . +------------------+--------------------------------------+ This is inconsistent. '--public' has been deprecated for some time, and has been removed from devstack (https://review.openstack.org/#/c/39323/), so we can finally get rid of it. We now raise the standard error for unsupported arguments. Change-Id: I15d16f690f9bd92b4cefbc8ed36ed2d171ff22f3 Closes-bug: #1378844
Diffstat (limited to 'glanceclient/v1')
-rw-r--r--glanceclient/v1/shell.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/glanceclient/v1/shell.py b/glanceclient/v1/shell.py
index 7c5d289..d4d117e 100644
--- a/glanceclient/v1/shell.py
+++ b/glanceclient/v1/shell.py
@@ -15,7 +15,6 @@
from __future__ import print_function
-import argparse
import copy
import six
import sys
@@ -188,10 +187,6 @@ def do_image_download(gc, args):
help=('Similar to \'--location\' in usage, but this indicates that'
' the Glance server should immediately copy the data and'
' store it in its configured image store.'))
-#NOTE(bcwaldon): This will be removed once devstack is updated
-# to use --is-public
-@utils.arg('--public', action='store_true', default=False,
- help=argparse.SUPPRESS)
@utils.arg('--is-public',
type=strutils.bool_from_string, metavar='{True,False}',
help='Make image accessible to the public.')