Skip to content

Commit a7a3e35

Browse files
authored
Merge pull request #121112 from yjst2012/patch-1
update howto-infrastructure-nodes.md with DNS changes
2 parents 69ff825 + 5763aaf commit a7a3e35

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

articles/openshift/howto-infrastructure-nodes.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,4 +358,31 @@ Use this procedure for any additional ingress controllers you may have in the cl
358358
grafana-599d4b948c-btlp2 3/3 Running 0 2m48s 10.131.4.10 cz-cluster-hsmtw-infra-aro-machinesets-eastus-1-vr56r <none> <none>
359359
kube-state-metrics-574c5bfdd7-f7fjk 3/3 Running 0 2m49s 10.131.4.8 cz-cluster-hsmtw-infra-aro-machinesets-eastus-1-vr56r <none> <none>
360360
```
361+
362+
### DNS
363+
364+
1. Allow the DNS pods to run on the infrastructure nodes.
365+
366+
```
367+
oc edit dns.operator/default
368+
```
369+
370+
```
371+
apiVersion: operator.openshift.io/v1
372+
kind: DNS
373+
metadata:
374+
name: default
375+
spec:
376+
nodePlacement:
377+
tolerations:
378+
- operator: Exists
379+
```
361380
381+
1. Verify that DNS pods are scheduled onto all infra nodes.
382+
383+
```
384+
oc get ds/dns-default -n openshift-dns
385+
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
386+
dns-default 7 7 7 7 7 kubernetes.io/os=linux 35d
387+
```
388+

0 commit comments

Comments
 (0)