Skip to content

Commit 3248bf0

Browse files
authored
Merge pull request #816 from rackerlabs/puc-649-switch-to-http-ipxe
feat: PUC-314: Enable http-ipxe boot interface in bios settings
2 parents e25627d + 2f47422 commit 3248bf0

File tree

1 file changed

+5
-0
lines changed
  • python/understack-workflows/understack_workflows

1 file changed

+5
-0
lines changed

python/understack-workflows/understack_workflows/bmc_bios.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ def required_bios_settings(pxe_interface: str) -> dict:
1111
return {
1212
"PxeDev1EnDis": "Enabled",
1313
"PxeDev1Interface": pxe_interface,
14+
"HttpDev1EnDis": "Enabled",
15+
"HttpDev1Interface": pxe_interface,
16+
# at this time ironic conductor returns http URLs
17+
# when its serving data from its own http server
18+
"HttpDev1TlsMode": "None",
1419
"TimeZone": "UTC",
1520
}
1621

0 commit comments

Comments
 (0)