summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ironicclient/v1/utils.py2
-rw-r--r--releasenotes/notes/bug-1724974-add-wanboot-to-supported-boot-devices.yaml3
2 files changed, 4 insertions, 1 deletions
diff --git a/ironicclient/v1/utils.py b/ironicclient/v1/utils.py
index 7c18e60..19c8e48 100644
--- a/ironicclient/v1/utils.py
+++ b/ironicclient/v1/utils.py
@@ -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
diff --git a/releasenotes/notes/bug-1724974-add-wanboot-to-supported-boot-devices.yaml b/releasenotes/notes/bug-1724974-add-wanboot-to-supported-boot-devices.yaml
new file mode 100644
index 0000000..4803166
--- /dev/null
+++ b/releasenotes/notes/bug-1724974-add-wanboot-to-supported-boot-devices.yaml
@@ -0,0 +1,3 @@
+---
+features:
+ - Adds missing ``wanboot`` value to the list of supported boot devices.