Add release note on drop-nova-network

blueprint drop-nova-network

Also introduces shorthand directive for launchpad bug and blueprint

Change-Id: I0664ccc0652c8b1428359daadb5f4d456a5a15b7
This commit is contained in:
Akihiro Motoki 2017-05-05 11:29:19 +00:00
parent 14aae64c48
commit f1fc38ff98
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
---
upgrade:
- |
[:blueprint:`drop-nova-network`]
Horizon nova-network floating IP and security groups supports have been
droppped in Pike release. nova-network has been marked as deprecated
in Nova in Newton release and horizon support was dropped in favor of it.
Neutron now becomes a requirement for floating IP and security groups.
Other operations on instances which created with nova-network should
work same as before.

View File

@ -40,8 +40,23 @@
extensions = [ extensions = [
'oslosphinx', 'oslosphinx',
'reno.sphinxext', 'reno.sphinxext',
'sphinx.ext.extlinks',
] ]
# Set aliases for extlinks
# - generic launchpad bug - [:bug:`12345`]
# - horizon blueprint - [:blueprint:`drop-nova-network`]
extlinks = {
'bug': (
'https://bugs.launchpad.net/bugs/%s',
'bug ',
),
'blueprint': (
'https://blueprints.launchpad.net/horizon/+spec/%s',
'blueprint ',
),
}
# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates'] templates_path = ['_templates']