summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-05-24 03:42:54 +0000
committerGerrit Code Review <review@openstack.org>2021-05-24 03:42:54 +0000
commita1033e6ce3b05de1a41b33ab3ff9eccc2989ff31 (patch)
tree9aa3288e8fabad5a27f3617969e94da3553e02f9
parent97ceb7bd157538bdaddc6fc6f564b8f0b980cf98 (diff)
parent9a09f1bdc99b827bb6fe0ac5b44be5904ec12368 (diff)
downloadironic-a1033e6ce3b05de1a41b33ab3ff9eccc2989ff31.tar.gz
Merge "Add missing bios_interface to api-ref for validate API"
-rw-r--r--api-ref/source/baremetal-api-v1-node-management.inc1
-rw-r--r--api-ref/source/parameters.yaml6
-rw-r--r--releasenotes/notes/bios-interface-api-ref-validate-ddb95461adb0e478.yaml5
3 files changed, 12 insertions, 0 deletions
diff --git a/api-ref/source/baremetal-api-v1-node-management.inc b/api-ref/source/baremetal-api-v1-node-management.inc
index 0d543a669..96f3e833a 100644
--- a/api-ref/source/baremetal-api-v1-node-management.inc
+++ b/api-ref/source/baremetal-api-v1-node-management.inc
@@ -66,6 +66,7 @@ the Node's driver does not support that interface.
.. rest_parameters:: parameters.yaml
+ - bios: v_bios
- boot: v_boot
- console: v_console
- deploy: v_deploy
diff --git a/api-ref/source/parameters.yaml b/api-ref/source/parameters.yaml
index 2db02f853..5129333f0 100644
--- a/api-ref/source/parameters.yaml
+++ b/api-ref/source/parameters.yaml
@@ -1844,6 +1844,12 @@ uuid:
type: string
# variables returned from node-validate
+v_bios:
+ description: |
+ Status of the "bios" interface
+ in: body
+ required: true
+ type: object
v_boot:
description: |
Status of the "boot" interface
diff --git a/releasenotes/notes/bios-interface-api-ref-validate-ddb95461adb0e478.yaml b/releasenotes/notes/bios-interface-api-ref-validate-ddb95461adb0e478.yaml
new file mode 100644
index 000000000..93a6dd822
--- /dev/null
+++ b/releasenotes/notes/bios-interface-api-ref-validate-ddb95461adb0e478.yaml
@@ -0,0 +1,5 @@
+---
+fixes:
+ - |
+ The bios_interface is returned in the node validate API but it's not in the
+ api-ref documentation. This change adds it to the documentation.