releasenotes: add notes for Mitaka cycle

Change-Id: I682987c9c6be77425b29d089ffff150c7391a959
This commit is contained in:
Emilien Macchi 2016-03-16 17:02:52 -04:00
parent 7695d6deb2
commit d68f25114e
13 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,3 @@
---
features:
- Create glance::cache::logging class that follow the same pattern as other modules.

View File

@ -0,0 +1,4 @@
---
features:
- Introduce glance::api::db and glance::registry::db classes to follow other modules.
They aim to configure database connection for Glance API and Glance Registry.

View File

@ -0,0 +1,3 @@
---
features:
- Normalize registry_host if IPv6 by adding brackets if not there.

View File

@ -0,0 +1,3 @@
---
deprecations:
- Remove usage of keystone::python class, that is deprecated.

View File

@ -0,0 +1,13 @@
---
features:
- Implement multiple store configuration.
It moves the default_store config option to the glance::api
class, and makes it possible to configure more than one store while
supplying a value for the default store to be used. If only one store
is given for glance_store/stores, the default store is automatically
set to be the same value. If multiple stores are given and no default
store is explicitly set, the config will fail and ask the user to
provide a default store.
deprecations:
- Deprecate known_stores parameter in favor of stores.

View File

@ -0,0 +1,6 @@
---
deprecations:
- Change default value for service_name in glance::keystone::auth class.
If Glance Service name is not set to "Image Service", a warning
will be sent. The default value changed to match
with https://github.com/openstack/keystone/blob/master/etc/default_catalog.templates

View File

@ -0,0 +1,3 @@
---
features:
- Support of PyMySQL driver for MySQL backend.

View File

@ -0,0 +1,3 @@
---
features:
- Allow to configure Glance API to communicate with Glance Registry using SSL.

View File

@ -0,0 +1,3 @@
---
deprecations:
- Remove deprecated cluster_id parameter.

View File

@ -0,0 +1,3 @@
---
deprecations:
- Use identity_uri and auth_uri by default and remove old deprecated auth parameters.

View File

@ -0,0 +1,4 @@
---
other:
- Remove all Puppet resources that manage Users, Groups, and File modes
because upstream packaging already manages them.

View File

@ -0,0 +1,5 @@
---
deprecations:
- Remove QPID messaging support.
Qpid messaging driver is removed from oslo.messaging so we won't support
anymore.

View File

@ -0,0 +1,7 @@
---
upgrade:
- Before, when Glance was configured with Swift backend, credentials were stored in database.
It caused issues when credentials change, old images are not usable anymore.
Glance and Glance store projects implemented a way to use separated sections for credentials
without storing them in database. The puppet-glance module is now using this new method, also
Glance Cache configuration does not have Swift parameters anymore, so we deleted them.