Wallaby Series Release Notes¶
15.0.0-19¶
Upgrade Notes¶
The default value of the trove guest agent config option
[postgresql] backup_docker_image
is changed toopenstacktrove/db-backup-postgresql:1.1.1
. There is nothing to do if the option is not configured explicitly.
セキュリティー上の問題¶
Changed the network mode of database container to "bridge" and exposed the service ports. Cloud operator could adjust the iptables to restrict network access from the database container to the outside. An example:
iptables -t filter -I DOCKER-USER 1 -d [restricted-network-range] -i docker0 ! -o docker0 -j REJECT
バグ修正¶
Fix guest-agent failed to start postgres container due to execution of the "CREATE DATABASE" statement within the context manager of psycopg library. See the following for details Stroy 2010761
Fixed backup creation failed issue when using custom container image registry.
Added a periodic task for postgresql datastore to clean up the archived WAL files. Added a check when creating incremental backups for postgresql. A new container image
openstacktrove/db-backup-postgresql:1.1.2
is uploaded to docker hub.
15.0.0¶
新機能¶
Added the ability to create the cinder volume in the same AZ as the nova instance. Set
enable_volume_az
to True (defaults to False)
Added the ability to quota on total amount of RAM in MB used per project. Set
quota.max_ram_per_tenant
to enable. Default is -1 (unlimited) to be backwards compatible. Existing installations will need to manually backfill quote usage for this to work as expected.
Support image tags for the datastore version. When using image tags, Trove is able to get the image dynamically from Glance for creating instances. If both are specified, image ID takes precedence over image tags.
Added custom container registry configuration for trove guest agent, it's now possible to use images in private registry rather than docker hub.
Added MySQL 8 support, docker image openstacktrove/db-backup-mysql8.0 is created to support backup and restore.
Added a new field
operating_status
for the instance to show the actual operational status of user's database. See https://docs.openstack.org/trove/latest/user/instance-status.html for more information.
In multi-region deployment with geo-replicated Swift, the user can restore a backup in one region by manually specifying the original backup data location created in another region.
Upgrade Notes¶
The default value of
[oslo_policy] policy_file
config option has been changed frompolicy.json
topolicy.yaml
. Operators who are utilizing customized or previously generated static policy JSON files (which are not needed by default), should generate new policy files or convert them in YAML format. Use the oslopolicy-convert-json-to-yaml tool to convert a JSON to YAML formatted policy file in backward compatible way.
Any 3rd party clients that are talking with Trove API to wait for
status
should be notified to useoperating_status
instead.
廃止予定の機能¶
Use of JSON policy files was deprecated by the
oslo.policy
library during the Victoria development cycle. As a result, this deprecation is being noted in the Wallaby cycle with an anticipated future removal of support byoslo.policy
. As such operators will need to convert to YAML policy files. Please see the upgrade notes for details on migration of any custom policy files.
バグ修正¶
Fixed an issue that orphan volumes left after removing instances, especially for the case that instance creation failed because of timeout when waiting for the volume available.
Fixed a race condition that instance becomes ERROR when Trove is handling creating and deleting at the same time.