Skip to content

Commit cc75fc3

Browse files
committed
fix typos
1 parent 4433503 commit cc75fc3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Troubleshoot Pod Scheduling Errors in AKS
3-
description: his article explains common scheduling errors, their causes, and how to resolve them.
3+
description: Explains common scheduling errors, their causes, and how to resolve them.
44
ms.date: 06/30/2025
55
ms.reviewer:
66
ms.service: azure-kubernetes-service
@@ -13,7 +13,7 @@ When you deploy workloads in Azure Kubernetes Service (AKS), you might encounter
1313

1414
## Error: 0/(X) nodes are available: X node(s) had volume node affinity conflict
1515

16-
Pods remains in the Pending state with the scheduler message:
16+
Pods remain in the Pending state with the scheduler message:
1717

1818
>0/(X) nodes are available: X node(s) had volume node affinity conflict.
1919
@@ -45,7 +45,7 @@ Persistent Volumes can define nodeAffinity rules that restrict which nodes can a
4545

4646
## Error: 0/(X) nodes are available: X Insufficient CPU
4747

48-
Pods remains in the Pending state with the scheduler message:
48+
Pods remain in the Pending state with the scheduler message:
4949

5050
>Error: 0/(X) nodes are available: X Insufficient CPU.
5151

@@ -80,15 +80,15 @@ This issue occurs when one or more of the following conditions are met:
8080
8181
## Error: 0/(X) nodes are available: X node(s) had untolerated taint
8282
83-
Pods remains in the Pending state with the scheduler message:
83+
Pods remain in the Pending state with the scheduler message:
8484
8585
>Error: 0/(X) nodes are available: X node(s) had untolerated taint.
8686
8787
### Cause
8888
8989
The Kubernetes scheduler tries to assign the Pod to a node, but all nodes are rejected for one of the following reasons:
9090
91-
- The node has a taint (`key=value:effect`) that the Pod does not tolerate.
91+
- The node has a taint (`key=value:effect`) that the Pod doesn't tolerate.
9292

9393
- The node has other taint-based restrictions that prevent the Pod from being scheduled.
9494

@@ -111,7 +111,7 @@ The Kubernetes scheduler tries to assign the Pod to a node, but all nodes are re
111111
112112
  effect: "NoSchedule"
113113
```
114-
3. If the taint is not needed, you can remove it from the node:
114+
3. If the taint isn't needed, you can remove it from the node:
115115
116116
```
117117
kubectl taint nodes <node-name> <key>:<effect>-

0 commit comments

Comments
 (0)