Skip to content

Commit 2f96d60

Browse files
authored
Merge pull request #89490 from mburke5678/nodes-tolerations-example
OSDOCS12397: Incorrect tolerations example for scheduling pods on the infra nodes
2 parents d627dcf + 77f80f9 commit 2f96d60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/binding-infra-node-workloads-using-taints-tolerations.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ tolerations:
133133
value: reserved <3>
134134
- effect: NoExecute <4>
135135
key: node-role.kubernetes.io/infra <5>
136-
operator: Exists <6>
136+
operator: Equal <6>
137137
value: reserved <7>
138138
----
139139
<1> Specify the effect that you added to the node.
140140
<2> Specify the key that you added to the node.
141141
<3> Specify the value of the key-value pair taint that you added to the node.
142142
<4> Specify the effect that you added to the node.
143143
<5> Specify the key that you added to the node.
144-
<6> Specify the `Exists` Operator to require a taint with the key `node-role.kubernetes.io/infra` to be present on the node.
144+
<6> Specify the `Equal` Operator to require a taint with the key `node-role.kubernetes.io/infra` to be present on the node.
145145
<7> Specify the value of the key-value pair taint that you added to the node.
146146
+
147147
This toleration matches the taint created by the `oc adm taint` command. A pod with this toleration can be scheduled onto the infra node.

0 commit comments

Comments
 (0)