feat: add Dell set_boot_override impl via HttpDev1Uri BIOS attribute#75
Merged
Conversation
bcavnvidia
previously approved these changes
May 23, 2026
Implements `set_boot_override` for Dell iDRAC by PATCHing the `HttpDev1Uri`-related BIOS attributes via `/Systems/{id}/Bios/Settings`. Returns the BIOS config job ID; callers can DELETE it to cancel before the BIOS reboot if needed.
Worth noting Dell doesn't expose the standard Redfish `Boot.HttpBootUri` property, and also rejects PATCHing `BootSourceOverrideTarget/Enabled` via `/Systems/{id}/Settings` (only `Boot.BootOrder` and `BootSourceOverrideMode` are accepted there). The `HttpDev1Uri` attribute is the Dell-documented path for pinning UEFI HTTP boot URLs.
Verified end-to-end:
- iDRAC9: R760 (BIOS 2.5.4), R760xd2 (BIOS 1.7.5), XE9680 (some).
- iDRAC10: R670 (BIOS 1.7.5).
Integration tests cover both paths:
- dell mockup (`HttpDev1Uri.ReadOnly=false`) exercises the `PATCH` path.
- dell_multi_dpu mockup (`HttpDev1Uri.ReadOnly=true`) exercises the locked path.
Note that there seemed to be some machines that were reporting as being
locked/read-only, even though they didn't appear to be in lockdown. Not
really sure what was going on there, but if for some reason the PATCHing
fails, we'll just return the error (and it will be up to the caller to
decide what they want to do).
Signed-off-by: Chet Nichols III <chetn@nvidia.com>
bf2e6f6 to
2957371
Compare
bcavnvidia
approved these changes
May 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This supports NVIDIA/infra-controller#1865.
Implements
set_boot_overridefor Dell iDRAC by PATCHing theHttpDev1Uri-related BIOS attributes via/Systems/{id}/Bios/Settings. Returns the BIOS config job ID; callers can DELETE it to cancel before the BIOS reboot if needed.Worth noting Dell doesn't expose the standard Redfish
Boot.HttpBootUriproperty, and also rejects PATCHingBootSourceOverrideTarget/Enabledvia/Systems/{id}/Settings(onlyBoot.BootOrderandBootSourceOverrideModeare accepted there). TheHttpDev1Uriattribute is the Dell-documented path for pinning UEFI HTTP boot URLs.Verified end-to-end on hosts in a development lab:
Integration tests cover both paths:
HttpDev1Uri.ReadOnly=false) exercises thePATCHpath.HttpDev1Uri.ReadOnly=true) exercises the locked path.Note that there seemed to be some machines that were reporting as being locked/read-only, even though they didn't appear to be in lockdown. Not really sure what was going on there, but if for some reason the PATCHing fails, we'll just return the error (and it will be up to the caller to decide what they want to do).
Signed-off-by: Chet Nichols III chetn@nvidia.com