Possible workaround: Update the limit_param_default setting in the glance-registry.conf file to be higher than 25. For instance, bump this number to 1,000. This will allow the glance API to return 1,000 images per query. ------ Note that there are three values that control the glance API limit: 1) the limit parameter passed in via the API call We need to patch Fog (being tracked in the upstream clone of this bug) to allow CFME to pass this value to Glance via the API. Once we have this ability, we can control how we gather images with pagination enabled in Glance. 2. the limit_param_default glance-registry.conf file setting If no parameter is passed in the API call, the limit_param_default is used. 3. the api_limit_max glance-registry.conf file setting The api_limit_max setting is used as an upper bound on the number of images returned via the Glance API call. The logic for setting the image count limit looks like: limit = value_from_api_call || limit_param_default limit = min(api_limit_max, limit)