github.com/openshift/installer@v1.4.17/scripts/openstack/manifest-tests/cinder-availability-zones/install-config.yaml (about)

     1  apiVersion: v1
     2  baseDomain: shiftstack.example.com
     3  controlPlane:
     4    hyperthreading: Enabled
     5    architecture: amd64
     6    name: master
     7    platform:
     8      openstack:
     9        type: ${COMPUTE_FLAVOR}
    10        zones: ["MasterAZ1", "MasterAZ2", "MasterAZ3"]
    11        rootVolume:
    12          size: 30
    13          type: performance
    14          zones: ["VolumeAZ1", "VolumeAZ2", "VolumeAZ3"]
    15    replicas: 10
    16  compute:
    17  - name: worker
    18    platform:
    19      openstack:
    20        type: ${COMPUTE_FLAVOR}
    21        zones: ["ComputeAZ1", "ComputeAZ2", "ComputeAZ3"]
    22        rootVolume:
    23          size: 30
    24          type: performance
    25          zones: ["VolumeAZ1", "VolumeAZ2", "VolumeAZ3"]
    26    replicas: 1000
    27  metadata:
    28    name: manifests1
    29  networking:
    30    clusterNetwork:
    31    - cidr: 10.128.0.0/14
    32      hostPrefix: 23
    33    machineNetwork:
    34    - cidr: 10.0.128.0/17
    35    networkType: OVNKubernetes
    36    serviceNetwork:
    37    - 172.30.0.0/16
    38  platform:
    39    openstack:
    40      cloud: ${OS_CLOUD}
    41      externalNetwork: ${EXTERNAL_NETWORK}
    42      computeFlavor: ${COMPUTE_FLAVOR}  # deprecated in 4.7
    43      lbFloatingIP: ${API_FIP}
    44  pullSecret: ${PULL_SECRET}