Skip to content

Commit dafde67

Browse files
committed
applied review suggestions
1 parent 3e34368 commit dafde67

File tree

1 file changed

+5
-2
lines changed
  • content/en/docs/reference/labels-annotations-taints

1 file changed

+5
-2
lines changed

content/en/docs/reference/labels-annotations-taints/_index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,7 @@ Used on: Node
11161116

11171117
A marker label to indicate that the node is used to run {{< glossary_tooltip text="control plane" term_id="control-plane" >}} components. The kubeadm tool applies this label to the control plane nodes that it manages. Other cluster management tools typically also set this taint.
11181118

1119-
You can label control plane nodes with this label to make it easier to schedule Pods only onto these nodes, or to avoid running Pods on the control plane. If this label set, [EndpointSlice controller](/docs/concepts/services-networking/topology-aware-routing/#implementation-control-plane) ignores that node.
1119+
You can label control plane nodes with this label to make it easier to schedule Pods only onto these nodes, or to avoid running Pods on the control plane. If this label is set, [EndpointSlice controller](/docs/concepts/services-networking/topology-aware-routing/#implementation-control-plane) ignores that node while calculating Topology Aware Hints.
11201120

11211121
### node-role.kubernetes.io/control-plane {#node-role-kubernetes-io-control-plane-taint}
11221122

@@ -1126,7 +1126,10 @@ Taint that kubeadm applies on control plane nodes to restrict placing pods and a
11261126

11271127
Example: `node-role.kubernetes.io/control-plane:NoSchedule`
11281128

1129-
If this Taint applied, control plane nodes allow only critical workloads to schedule on them. You can manually remove this taint with `node-role.kubernetes.io/control-plane:NoSchedule-`
1129+
If this Taint is applied, control plane nodes allow only critical workloads to schedule on them. You can manually remove this taint with the following command on a specific node.
1130+
```shell
1131+
kubectl taint nodes <node-name> node-role.kubernetes.io/control-plane:NoSchedule-
1132+
```
11301133

11311134
### node-role.kubernetes.io/master (deprecated) {#node-role-kubernetes-io-master-taint}
11321135

0 commit comments

Comments
 (0)