Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include bootstrapExternalStatic* variables in doc #1093

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion ansible-ipi-install/inventory/hosts.sample
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,28 @@ pullsecret=""
# (Optional) Enable RedFish VirtualMedia/iDRAC VirtualMedia
#enable_virtualmedia=True

# (Required when enable_virtualmedia is set to True) Set an available IP address from the baremetal net for these two variables
# (Required when enable_virtualmedia is set to True in OCP 4.6) Set an available IP address from the baremetal net for these two variables
#provisioningHostIP=<baremetal_net_IP1>
#bootstrapProvisioningIP=<baremetal_net_IP2>

# (Optional in OCP >= 4.7) Set an available IP address from the provisioning network when provisioning network is enabled. Not used when enable_virtualmedia=True
#bootstrapProvisioningIP=<provisioning_net_IP>

# (Optional in OCP >= 4.12 ) Allows to set bootstrapExternalStatic* variables starting.
#static_bootstrap_extnet=false

# (Optional in OCP >= 4.12 ) Set this parameter to the appropriate IP address on the baremetal network
# when the provisioningNetwork configuration setting is set to Disabled, enable_virtualmedia is set to True and static_bootstrap_extnet is set to True.
#bootstrapExternalStaticIP=<baremetal_net_IP>

# (Optional in OCP >= 4.12 ) Set this parameter to the appropriate GW address on the baremetal network
# when the provisioningNetwork configuration setting is set to Disabled, enable_virtualmedia is set to True and static_bootstrap_extnet is set to True.
#bootstrapExternalStaticGateway=<baremetal_net_GW>

# (Optional in OCP >= 4.14 ) Set this parameter to the appropriate DNS address on the baremetal network
# when the provisioningNetwork configuration setting is set to Disabled, enable_virtualmedia is set to True and static_bootstrap_extnet is set to True.
#bootstrapExternalStaticDNS=<baremetal_net_DNS>

# (Optional) Change the boot mode of the OpenShift cluster nodes to legacy mode (BIOS). Default is UEFI.
#bootmode=legacy

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,28 @@ pullsecret=""
# (Optional) Enable RedFish VirtualMedia/iDRAC VirtualMedia
#enable_virtualmedia=True

# (Required when enable_virtualmedia is set to True) Set an available IP address from the baremetal net for these two variables
# (Required when enable_virtualmedia is set to True in OCP 4.6) Set an available IP address from the baremetal net for these two variables
#provisioningHostIP=<baremetal_net_IP1>
#bootstrapProvisioningIP=<baremetal_net_IP2>

# (Optional in OCP >= 4.7) Set an available IP address from the provisioning network when provisioning network is enabled. Not used when enable_virtualmedia=True
#bootstrapProvisioningIP=<provisioning_net_IP>

# (Optional in OCP >= 4.12 ) Allows to set bootstrapExternalStatic* variables starting.
#static_bootstrap_extnet=false

# (Optional in OCP >= 4.12 ) Set this parameter to the appropriate IP address on the baremetal network
# when the provisioningNetwork configuration setting is set to Disabled, enable_virtualmedia is set to True and static_bootstrap_extnet is set to True.
#bootstrapExternalStaticIP=<baremetal_net_IP>

# (Optional in OCP >= 4.12 ) Set this parameter to the appropriate GW address on the baremetal network
# when the provisioningNetwork configuration setting is set to Disabled, enable_virtualmedia is set to True and static_bootstrap_extnet is set to True.
#bootstrapExternalStaticGateway=<baremetal_net_GW>

# (Optional in OCP >= 4.14 ) Set this parameter to the appropriate DNS address on the baremetal network
# when the provisioningNetwork configuration setting is set to Disabled, enable_virtualmedia is set to True and static_bootstrap_extnet is set to True.
#bootstrapExternalStaticDNS=<baremetal_net_DNS>

# (Optional) A MAC address to use for the external NIC on the bootstrap VM. This is optional and if blank is generated by libvirt.
#externalMACAddress="52:54:00:XX:XX:XX"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,22 @@ ifeval::[{product-version} > 4.4]
| Set this parameter to the appropriate list of exclusions for proxy usage within your environment.
endif::[]

ifeval::[{product-version} >= 4.12]
| `bootstrapExternalStaticIP`
|
| Set this parameter to the appropriate IP address on the `baremetal` network when the `provisioningNetwork` configuration setting is set to `Disabled`.

| `bootstrapExternalStaticGateway`
|
| Set this parameter to the appropriate GW address on the `baremetal` network when the `provisioningNetwork` configuration setting is set to `Disabled`.
endif::[]

ifeval::[{product-version} >= 4.14]
| `bootstrapExternalStaticDNS`
|
| Set this parameter to the appropriate DNS address on the `baremetal` network when the `provisioningNetwork` configuration setting is set to `Disabled`.
endif::[]

|===

[id="hoststable"]
Expand Down
Loading