Comment 5 for bug 1378844

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to python-glanceclient (master)

Reviewed: https://review.openstack.org/126910
Committed: https://git.openstack.org/cgit/openstack/python-glanceclient/commit/?id=597da8aa5514b7e8ba05426ac3c36f09597b8b8a
Submitter: Jenkins
Branch: master

commit 597da8aa5514b7e8ba05426ac3c36f09597b8b8a
Author: Stuart McLaren <email address hidden>
Date: Wed Oct 8 13:44:58 2014 +0000

    '--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