Skip to content

Commit 2f47422

Browse files
committed
PUC-649: Enable http-ipxe boot interface in bios settings
1 parent e25627d commit 2f47422

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)