Set manage_images to false on aws

We don't have image management for aws so set the manage_images property
on aws providers to false.

This corrects a problem with min ready calculations checking that the
imgae is ready and doing so by checking for the pool_label diskimage
attribute.

Change-Id: I698f8cb1c6ac2969ce94830510fead8918f8a55e
This commit is contained in:
Clark Boylan 2019-08-23 12:38:50 -07:00
parent 8efd70d0a8
commit c009b6aebe
1 changed files with 3 additions and 1 deletions

View File

@ -167,7 +167,9 @@ class AwsProviderConfig(ProviderConfig):
@property
def manage_images(self):
return True
# Currently we have no image management for AWS. This should
# be updated if that changes.
return False
@staticmethod
def reset():