github.com/openshift/installer@v1.4.17/docs/dev/libvirt/customization.md (about)

     1  # Libvirt Platform Customization
     2  
     3  The following options are available when using libvirt:
     4  
     5  - `platform.libvirt.network.if` - the network bridge attached to the libvirt network (`tt0` by default)
     6  
     7  ## Examples
     8  
     9  An example `install-config.yaml` is shown below. This configuration has been modified to show the customization that is possible via the install config.
    10  
    11  ```yaml
    12  apiVersion: v1
    13  baseDomain: example.com
    14  ...
    15  platform:
    16    libvirt:
    17      URI: qemu+tcp://192.168.122.1/system
    18      network:
    19        if: mybridge0
    20  pullSecret: '{"auths": ...}'
    21  sshKey: ssh-ed25519 AAAA...
    22  ```