Current Series Release Notes

29.0.0-21

New Features

  • A new file, glance/wsgi/api.py, has been added as a place to hold a WSGI application object. This is intended to ease deployment by providing a consistent location for these objects. For example, if using uWSGI then instead of:

    [uwsgi]
    wsgi-file = /bin/glance-wsgi-api
    

    You can now use:

    [uwsgi]
    module = glance.wsgi.api:application
    

    This also simplifies deployment with other WSGI servers that expect module paths such as gunicorn.

Upgrade Notes

  • Support for running Glance services in Windows operating systems has been removed.

Other Notes

  • Updated the stores detail API response to include fsid field in RBD store properties.