Remove deprecated [pxe]/http_* options

This removes [pxe]/http_url and [pxe]/http_root options, which have been
deprecated for some time now. These moved to the [deploy] group.

Change-Id: I76283ee2bea474d5b0b0c345fe763fdd764a3bfa
This commit is contained in:
Jim Rollenhagen 2016-05-16 09:01:59 -04:00
parent b2d7771431
commit 4da99c1976
3 changed files with 7 additions and 6 deletions

View File

@ -901,11 +901,9 @@
# ironic-conductor node's HTTP server URL. Example:
# http://192.1.2.3:8080 (string value)
# Deprecated group/name - [pxe]/http_url
#http_url = <None>
# ironic-conductor node's HTTP root path. (string value)
# Deprecated group/name - [pxe]/http_root
#http_root = /httpboot
# Priority to run in-band erase devices via the Ironic Python

View File

@ -50,12 +50,10 @@ from ironic import objects
deploy_opts = [
cfg.StrOpt('http_url',
help=_("ironic-conductor node's HTTP server URL. "
"Example: http://192.1.2.3:8080"),
deprecated_group='pxe'),
"Example: http://192.1.2.3:8080")),
cfg.StrOpt('http_root',
default='/httpboot',
help=_("ironic-conductor node's HTTP root path."),
deprecated_group='pxe'),
help=_("ironic-conductor node's HTTP root path.")),
cfg.IntOpt('erase_devices_priority',
help=_('Priority to run in-band erase devices via the Ironic '
'Python Agent ramdisk. If unset, will use the priority '

View File

@ -0,0 +1,5 @@
---
upgrade:
- Removes deprecated options "[pxe]/http_url" and "[pxe]/http_root".
Configuration files should instead use "[deploy]/http_url" and
"[deploy]/http_root".