Miscellaneous release notes additions for Queens

All appropriate release note items and changes not previously
committed in Queens.

Change-Id: I67a769d1bf989350014b73b6e305fcc983b0bb88
This commit is contained in:
Eric K 2018-02-07 15:16:47 -08:00
parent b622de7ce9
commit 6ac80ca9dd
4 changed files with 55 additions and 8 deletions

View File

@ -2,6 +2,10 @@
prelude: >
features:
- |
Added config datasource driver and its associated agent to import the
contents of service configuration files in Congress. An example of
usage is given in ``examples/cfg_validator``.
Added config validation data source driver and its associated agent to import
and validate the contents of service configuration files in Congress.
An example of usage is given in ``examples/cfg_validator``.
upgrade:
- To enable the config validation data source driver, add the following class path to the
drivers option in the ``[DEFAULT]`` section of congress config file.
``congress.datasources.cfgvalidator_driver.ValidatorDriver``

View File

@ -5,5 +5,5 @@ features:
trigger and monitor Mistral workflows and actions.
upgrade:
- To enable Mistral data source driver, add the following class path to the
drivers option in the DEFAULT section of congress config file.
congress.datasources.mistral_driver.MistralDriver
drivers option in the ``[DEFAULT]`` section of congress config file.
``congress.datasources.mistral_driver.MistralDriver``

View File

@ -0,0 +1,43 @@
---
prelude: >
features:
- The Neutron Qos driver (`neutronv2_qos`) is added to
make data from the Neutron QoS extension available
to Congress for policy-based monitoring and
enforcement.
- In Neutron v2 driver, new actions
(`attach_port_security_group` and
`detach_port_security_group`) are added to enable
Congress policy rules to attach/detach a single
security group from a port. These actions make it
possible to write Congress policies to manage
network security. An example of such a policy can
be found in
``library/tag_based_network_security_zone.yaml``.
- In Nova driver, a new `tags` table is added to
make association between Nova servers and string
tags available to Congress for policy-based
monitoring and enforcement. An example of
tag-based policy can be found in
``library/tag_based_network_security_zone.yaml``.
upgrade:
- |
The Tempest test cases for Congress has been removed
from Congress and moved into a separate repo available
at https://github.com/openstack/congress-tempest-plugin
- To enable Neutron QoS data source driver, add the following class path to the
drivers option in the ``[DEFAULT]`` section of congress config file.
``congress.datasources.neutronv2_qos_driver.NeutronV2QosDriver``
deprecations:
- Congress config options `policy_path`, `datasource_file`,
and `root_path` had been deprecated for multiple
releases and is now removed.
- In Aodh driver, the `alarms.threshold_rule` table has
been removed because the rule type had been
deprecated in Aodh since Ocata and is no longer
available in the Queens release.
fixes:
- In Monasca driver, an authentication issue due to
outdated use of Keystone has been fixed.
- Miscellaneous bug fixes to improve stability and
robustness.