Skip to content

Commit a27133f

Browse files
committed
OSDOCS-12848: Added /etc/resolv.conf modification to resolve DNS connect issues
1 parent 0f4c523 commit a27133f

4 files changed

+53
-4
lines changed

modules/k8s-nmstate-deploying-nmstate-CLI.adoc

+17
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,23 @@ metadata:
9292
EOF
9393
----
9494

95+
. Optional: In the event that your cluster enters a disconnected environment becuase of DNS connectivity issues, you can add the following DNS hostname configuration to the `NMState` CRD to build in health checks that can resolve these issues:
96+
+
97+
[source,terminal]
98+
----
99+
apiVersion: nmstate.io/v1
100+
kind: NMState
101+
metadata:
102+
name: nmstate
103+
spec:
104+
probeConfiguration:
105+
dns:
106+
host: redhat.com
107+
# ...
108+
----
109+
110+
.Verification
111+
95112
. Verify that all pods for the NMState Operator are in a `Running` state:
96113
+
97114
[source,terminal]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Module included in the following assemblies:
2+
//
3+
// * networking/k8s_nmstate/k8s-nmstate-troubleshooting-node-network.adoc
4+
5+
:_mod-docs-content-type: PROCEDURE
6+
[id="k8s-nmstate-troubleshooting-dns-disconnected-env-resolv.adoc_{context}"]
7+
= Creating a custom DNS host name to resolve DNS connectivity issues
8+
9+
In a disconnected environment where a host server cannot be reached, you can resolve DNS connectivity issues by specifying a custom DNS host name in the `NMState` custom resource definition (CRD). The Kubernetes NMState Operator adds the custom DNS host name to the `/etc/resolv.conf` file. If your cluster gets disconnected, the Operator reads the `/etc/resolv.conf` and uses the custom DNS host name to resolve the DNS connectivity issue.
10+
11+
.Procedure
12+
13+
* Add the DNS host name configuration to the `NMState` CRD of your cluster:
14+
+
15+
[source,terminal]
16+
----
17+
apiVersion: nmstate.io/v1
18+
kind: NMState
19+
metadata:
20+
name: nmstate
21+
spec:
22+
probeConfiguration:
23+
dns:
24+
host: redhat.com
25+
# ...
26+
----
27+

modules/k8s-nmstate-troubleshooting-dns-disconnected-env.adoc

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[id="troubleshooting-dns-disconnected-env_{context}"]
77
= Troubleshooting DNS connectivity issues in a disconnected environment
88

9-
If you experience DNS connectivity issues when configuring `nmstate` in a disconnected environment, you can configure the DNS server to resolve the list of name servers for the domain `root-servers.net`.
9+
If you experience DNS connectivity issues when configuring `nmstate` in a disconnected environment, you can configure the DNS server to resolve the list of name servers for the domain `root-servers.net`. Alternatively, you can resolve DNS connectivity issues by configuring a custom host name and then using the hostname to perform internal networking health checks on your cluster.
1010

1111
[IMPORTANT]
1212
====
@@ -15,8 +15,7 @@ Ensure that the DNS server includes a name server (NS) entry for the `root-serve
1515

1616
== Configuring the bind9 DNS named server
1717

18-
For a cluster configured to query a `bind9` DNS server, you can add the `root-servers.net` zone to a configuration file that contains at least one NS record.
19-
For example you can use the `/var/named/named.localhost` as a zone file that already matches this criteria.
18+
For a cluster configured to query a `bind9` DNS server, you can add the `root-servers.net` zone to a configuration file that contains at least one NS record. For example you can use the `/var/named/named.localhost` as a zone file that already matches this criteria.
2019

2120
.Procedure
2221

@@ -69,4 +68,4 @@ Name: 127.0.0.1
6968
Address: 127.0.0.53
7069
Aliases:
7170
root-servers.net name server root-servers.net.
72-
----
71+
----

networking/k8s_nmstate/k8s-nmstate-troubleshooting-node-network.adoc

+6
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,14 @@ This includes issues such as:
1414
* The host loses connection to the default gateway.
1515
* The host loses connection to the API server.
1616
17+
// Troubleshooting an incorrect node network configuration policy configuration
1718
include::modules/virt-troubleshooting-incorrect-policy-config.adoc[leveloffset=+1]
1819

20+
// Troubleshooting DNS connectivity issues in a disconnected environment
1921
include::modules/k8s-nmstate-troubleshooting-dns-disconnected-env.adoc[leveloffset=+1]
2022

23+
// Creating a custom DNS host name to resolve DNS connectivity issues
24+
include::modules/k8s-nmstate-troubleshooting-dns-disconnected-env-resolv.adoc[leveloffset=+2]
25+
26+
// Configuring the dnsmasq DNS server
2127
include::modules/k8s-nmstate-troubleshooting-dns-disconnected-env-dnsmasq.adoc[leveloffset=+2]

0 commit comments

Comments
 (0)