From a3f7a787f2a7ec5a023903faff655a1fa65951b9 Mon Sep 17 00:00:00 2001 From: Ben Nemec Date: Wed, 5 Oct 2016 22:01:28 +0000 Subject: [PATCH] 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 --- tripleoclient/v1/overcloud_image.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tripleoclient/v1/overcloud_image.py b/tripleoclient/v1/overcloud_image.py index b01a4e77f..4482cf2d2 100644 --- a/tripleoclient/v1/overcloud_image.py +++ b/tripleoclient/v1/overcloud_image.py @@ -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):