Remove auth_required=False from upload image command

This command talks to glance, and as such it does in fact require
authentication details.  With auth_required set to false, osc-lib
doesn't populate the auth details of the glance client which causes
the attached bug.

Change-Id: Ib7a28587a09e16819aad62d9ec123a286fd5c6a8
Closes-Bug: 1630743
This commit is contained in:
Ben Nemec 2016-10-05 22:01:28 +00:00
parent a6221608bd
commit a3f7a787f2
1 changed files with 0 additions and 1 deletions

View File

@ -545,7 +545,6 @@ class BuildOvercloudImage(command.Command):
class UploadOvercloudImage(command.Command):
"""Create overcloud glance images from existing image files."""
auth_required = False
log = logging.getLogger(__name__ + ".UploadOvercloudImage")
def _env_variable_or_set(self, key_name, default_value):