1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 06:46:36 +01:00

openstack docs: Fix type of clusterOSImageProperties

This commit is contained in:
Pierre Prinetti
2025-05-28 22:54:42 +02:00
parent 25b5d2154b
commit bf106b4d53
2 changed files with 8 additions and 8 deletions

View File

@@ -30,7 +30,7 @@ Beyond the [platform-agnostic `install-config.yaml` properties](../customization
* `region` (deprecated string): The OpenStack region where the cluster will be created. Currently this value is not used by the installer.
* `trunkSupport` (deprecated string): Whether OpenStack ports can be trunked (`1` for true or `0` for false)
* `clusterOSImage` (optional string): Either a URL with `http(s)` or `file` scheme to override the default OS image for cluster nodes or an existing Glance image name.
* `clusterOSImageProperties` (optional list of strings): a list of properties to be added to the installer-uploaded ClusterOSImage in Glance. The default is to not set any properties. `clusterOSImageProperties` is ignored when `clusterOSImage` points to an existing image in Glance.
* `clusterOSImageProperties` (key-value pairs): a list of properties to be added to the installer-uploaded ClusterOSImage in Glance. The default is to not set any properties. `clusterOSImageProperties` is ignored when `clusterOSImage` points to an existing image in Glance.
* `apiVIPs` (optional array of strings): IP address on the machineNetwork that will be assigned to the API VIP. If more than one are set, it must be one IPv4 and one IPv6.
* `ingressVIPs` (optional array of strings): IP address on the machineNetwork that will be assigned to the ingress VIP. If more than one are set, it must be one IPv4 and one IPv6.
* `controlPlanePort` (optional object): the UUID and/or Name of an OpenStack Network and its Subnets where to install the nodes of the cluster onto. For more information on how to install with a custom subnet, see the [custom subnets](#custom-subnets) section of the docs.

View File

@@ -30,9 +30,9 @@ This may be accomplished in two ways:
``` yaml
platform:
openstack:
clusterOSImageProperties:
- hw_cpu_policy: dedicated
- hw_mem_page_size: large
clusterOSImageProperties:
hw_cpu_policy: dedicated
hw_mem_page_size: large
```
If using image properties, then the flavor used to deploy the virtual machines must allow the image property values selected.
@@ -71,10 +71,10 @@ This can also be accomplished by using `platform.openstack.clusterOSImagePropert
platform:
openstack:
clusterOSImageProperties:
- hw_cpu_policy: dedicated
- hw_mem_page_size: 1GB
- hw_numa_nodes: '1'
- hw_vif_multiqueue_enabled: true
hw_cpu_policy: dedicated
hw_mem_page_size: 1GB
hw_numa_nodes: '1'
hw_vif_multiqueue_enabled: true
```
### Create additional network to attach poll mode driver interfaces