You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/concepts/architecture/nodes.md
+91-7Lines changed: 91 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -424,20 +424,104 @@ for gracefully terminating normal pods, and the last 10 seconds would be
424
424
reserved for terminating [critical pods](/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/#marking-pod-as-critical).
425
425
426
426
{{< note >}}
427
-
When pods were evicted during the graceful node shutdown, they are marked as failed.
428
-
Running `kubectl get pods` shows the status of the the evicted pods as `Shutdown`.
427
+
When pods were evicted during the graceful node shutdown, they are marked as shutdown.
428
+
Running `kubectl get pods` shows the status of the the evicted pods as `Terminated`.
429
429
And `kubectl describe pod` indicates that the pod was evicted because of node shutdown:
430
430
431
431
```
432
-
Status: Failed
433
-
Reason: Shutdown
434
-
Message: Node is shutting, evicting pods
432
+
Reason: Terminated
433
+
Message: Pod was terminated in response to imminent node shutdown.
435
434
```
436
435
437
-
Failed pod objects will be preserved until explicitly deleted or [cleaned up by the GC](/docs/concepts/workloads/pods/pod-lifecycle/#pod-garbage-collection).
438
-
This is a change of behavior compared to abrupt node termination.
439
436
{{< /note >}}
440
437
438
+
### Pod Priority based graceful node shutdown {#pod-priority-graceful-node-shutdown}
0 commit comments