Merge "ironic-conductor: configure ipxe_timeout to 60"

This commit is contained in:
Zuul 2018-04-06 16:19:12 +00:00 committed by Gerrit Code Review
commit e29c28cc71
2 changed files with 10 additions and 0 deletions

View File

@ -166,6 +166,10 @@ parameters:
default: 8088
description: Port to use for serving images when iPXE is used.
type: string
IronicIPXETimeout:
default: 60
description: iPXE timeout in second. Set to 0 for infinite timeout.
type: string
IronicPassword:
description: The password for the Ironic service and db account, used by the Ironic services
type: string
@ -256,6 +260,7 @@ outputs:
- "%{hiera('ironic_conductor_http_host')}:"
- {get_param: IronicIPXEPort}
ironic::drivers::pxe::ipxe_enabled: {get_param: IronicIPXEEnabled}
ironic::drivers::pxe::ipxe_timeout: {get_param: IronicIPXETimeout}
ironic::glance_api_servers: {get_param: [EndpointMap, GlanceInternal, uri]}
# NOTE: bind IP is found in hiera replacing the network name with the
# local node IP for the given network; replacement examples

View File

@ -0,0 +1,5 @@
---
features:
- |
A new parameter IronicIPXETimeout can change the default iPXE timeout, set to
60 seconds. Note that 0 would set an infinite timeout.