Synchronize ironic and ironicclients list of boot devices

Ensure list of boot devices specified in ironic matches whats
specified in ironicclient. Specifically in this case adding
'wanboot'.

Change-Id: Icd427fc02296cca94ebe722d4cacecb3a902d4c2
Closes-Bug: #1724974
Signed-off-by: Matt Keenan <matt.keenan@gmail.com>
This commit is contained in:
Matt Keenan 2017-10-19 22:11:25 +01:00 committed by Julia Kreger
parent 5113817869
commit 27de3f6dae
2 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,7 @@
HTTP_METHODS = ['POST', 'PUT', 'GET', 'DELETE', 'PATCH']
BOOT_DEVICES = ['pxe', 'disk', 'cdrom', 'bios', 'safe']
BOOT_DEVICES = ['pxe', 'disk', 'cdrom', 'bios', 'safe', 'wanboot']
# Polling intervals in seconds.
_LONG_ACTION_POLL_INTERVAL = 10

View File

@ -0,0 +1,3 @@
---
features:
- Adds missing ``wanboot`` value to the list of supported boot devices.