Skip to content

Commit 3622d88

Browse files
committed
fix typo
1 parent f4c5860 commit 3622d88

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

support/azure/azure-kubernetes/availability-performance/troubleshoot-pod-scheduler-errors.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Pods remain in the Pending state with the following scheduler error:
3434
kubectl get nodes --show-labels
3535
```
3636
3. Make sure that at least one node's labels match the `nodeAffinity` specified in the Persistent Volume's YAML spec.
37-
4. To resolve the conflict, Update the Persistent Volume's affinity rules to match existing node labels or add the required labels to the correct node:
37+
4. To resolve the conflict, Update the Persistent Volume's `nodeAffinity` rules to match existing node labels or add the required labels to the correct node:
3838
3939
```bash
4040
kubectl label nodes <node-name> <key>=<value>
@@ -102,14 +102,10 @@ The Kubernetes scheduler tries to assign the Pod to a node, but all nodes are re
102102
103103
```yml
104104
tolerations:
105-
106-
- key: "key"
107-
108-
  operator: "Equal"
109-
110-
  value: "value"
111-
112-
  effect: "NoSchedule"
105+
- key: "key"
106+
operator: "Equal"
107+
value: "value"
108+
effect: "NoSchedule"
113109
```
114110
If the taint isn't needed, you can remove it from the node:
115111

0 commit comments

Comments
 (0)