Current Series Release Notes

14.0.0-2

New Features

  • A new module, cyborg.wsgi, has been added as a place to gather WSGI application objects. 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/cyborg-api-wsgi
    

    You can now use:

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

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

Deprecation Notes

  • The cyborg-api-wsgi console script is deprecated for removal in a future release. This artifact is generated using a setup-tools extension that is provide by PBR which is also deprecated. Due to the changes in python packaging this custom extensions is planned to be removed form all OpenStack projects in a future PBR release in favor of module based wsgi applications entry points.