diff --git a/docs/dns-stack.md b/docs/dns-stack.md
index b6d2064a624fee040053c645ec231ea8573031c5..42d1bf0e6f715ba0fa5a493d37bb00c150816e7c 100644
--- a/docs/dns-stack.md
+++ b/docs/dns-stack.md
@@ -119,7 +119,20 @@ leaves you with a non functional cluster.
 ``resolvconf_mode`` configures how Kubespray will setup DNS for ``hostNetwork: true`` PODs and non-k8s containers.
 There are three modes available:
 
-### resolvconf_mode: docker_dns (default)
+### resolvconf_mode: host_resolvconf (default)
+
+This activates the classic Kubespray behavior that modifies the hosts ``/etc/resolv.conf`` file and dhclient
+configuration to point to the cluster dns server (either coredns or coredns_dual, depending on dns_mode).
+
+As cluster DNS is not available on early deployment stage, this mode is split into 2 stages. In the first
+stage (``dns_early: true``), ``/etc/resolv.conf`` is configured to use the DNS servers found in ``upstream_dns_servers``
+and ``nameservers``. Later, ``/etc/resolv.conf`` is reconfigured to use the cluster DNS server first, leaving
+the other nameservers as backups.
+
+Also note, existing records will be purged from the `/etc/resolv.conf`,
+including resolvconf's base/head/cloud-init config files and those that come from dhclient.
+
+### resolvconf_mode: docker_dns
 
 This sets up the docker daemon with additional --dns/--dns-search/--dns-opt flags.
 
@@ -162,20 +175,7 @@ DNS queries to the cluster DNS will timeout after a few seconds, resulting in th
 used as a backup nameserver. After cluster DNS is running, all queries will be answered by the cluster DNS
 servers, which in turn will forward queries to the system nameserver if required.
 
-#### resolvconf_mode: host_resolvconf
-
-This activates the classic Kubespray behavior that modifies the hosts ``/etc/resolv.conf`` file and dhclient
-configuration to point to the cluster dns server (either coredns or coredns_dual, depending on dns_mode).
-
-As cluster DNS is not available on early deployment stage, this mode is split into 2 stages. In the first
-stage (``dns_early: true``), ``/etc/resolv.conf`` is configured to use the DNS servers found in ``upstream_dns_servers``
-and ``nameservers``. Later, ``/etc/resolv.conf`` is reconfigured to use the cluster DNS server first, leaving
-the other nameservers as backups.
-
-Also note, existing records will be purged from the `/etc/resolv.conf`,
-including resolvconf's base/head/cloud-init config files and those that come from dhclient.
-
-#### resolvconf_mode: none
+### resolvconf_mode: none
 
 Does nothing regarding ``/etc/resolv.conf``. This leaves you with a cluster that works as expected in most cases.
 The only exception is that ``hostNetwork: true`` PODs and non-k8s managed containers will not be able to resolve
diff --git a/docs/flatcar.md b/docs/flatcar.md
index a581dc6c8ae0cf37f0ae519b715626c730cf5272..cdd2c6a5e5e933ae1fa1b384c384a851ad117edd 100644
--- a/docs/flatcar.md
+++ b/docs/flatcar.md
@@ -9,6 +9,6 @@ General Flatcar Pre-Installation Notes:
 
 - Ensure that the bin_dir is set to `/opt/bin`
 - ansible_python_interpreter should be `/opt/bin/python`. This will be laid down by the bootstrap task.
-- The default resolvconf_mode setting of `docker_dns` **does not** work for Flatcar. This is because we do not edit the systemd service file for docker on Flatcar nodes. Instead, just use the `host_resolvconf` mode. It should work out of the box.
+- The resolvconf_mode setting of `docker_dns` **does not** work for Flatcar. This is because we do not edit the systemd service file for docker on Flatcar nodes. Instead, just use the default `host_resolvconf` mode. It should work out of the box.
 
 Then you can proceed to [cluster deployment](#run-deployment)
diff --git a/roles/kubespray-defaults/defaults/main.yaml b/roles/kubespray-defaults/defaults/main.yaml
index e49bdff0946cd78b6f058c5587956e22beef7a6a..378f49ab10b5928ea245d999ea12ce2ac8f0cc19 100644
--- a/roles/kubespray-defaults/defaults/main.yaml
+++ b/roles/kubespray-defaults/defaults/main.yaml
@@ -105,7 +105,7 @@ nodelocaldns_secondary_skew_seconds: 5
 # Should be set to a cluster IP if using a custom cluster DNS
 manual_dns_server: ""
 
-# Can be docker_dns, host_resolvconf or none
+# Can be host_resolvconf, docker_dns or none
 resolvconf_mode: host_resolvconf
 # Deploy netchecker app to verify DNS resolve as an HTTP service
 deploy_netchecker: false