diff --git a/modules/ipi-install-modifying-install-config-for-dual-stack-network.adoc b/modules/ipi-install-modifying-install-config-for-dual-stack-network.adoc index 10a8910cb6..cd504dca24 100644 --- a/modules/ipi-install-modifying-install-config-for-dual-stack-network.adoc +++ b/modules/ipi-install-modifying-install-config-for-dual-stack-network.adoc @@ -28,6 +28,23 @@ serviceNetwork: - fd03::/112 ---- +[IMPORTANT] +==== +If you specified an NMState configuration in the `networkConfig` section of your `install-config.yaml` file, ensure you add `interfaces.wait-ip: ipv4+ipv6` to the NMState YAML file to resolve an issue that prevents your cluster from deploying on a dual-stack network. + +.Example NMState YAML configuration file that includes the `wait-ip` parameter +[source,yaml] +---- +networkConfig: + nmstate: + interfaces: + - name: +# ... + wait-ip: ipv4+ipv6 +# ... +---- +==== + To provide an interface to the cluster for applications that use IPv4 and IPv6 addresses, configure IPv4 and IPv6 virtual IP (VIP) address endpoints for the Ingress VIP and API VIP services. To configure IPv4 and IPv6 address endpoints, edit the `apiVIPs` and `ingressVIPs` configuration settings in the `install-config.yaml` file . The `apiVIPs` and `ingressVIPs` configuration settings use a list format. The order of the list indicates the primary and secondary VIP address for each service. ifdef::vsphere[]