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/tasks/administer-cluster/cluster-shutdown-and-restart.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,21 +7,21 @@ weight: 55
7
7
8
8
<!-- overview -->
9
9
10
-
This page provides an overview of the steps you should follow when shutting down and restarting Kubernetes clusters.
10
+
This page outlines the steps required to safely shut down and restart Kubernetes clusters.
11
11
12
12
As cluster administrators, you may need to suspend your running cluster and restart it for later use. There are different reasons why you may need to perform this shutdown, such as cluster maintenance or saving on operation/resource costs.
13
13
14
14
At a high level, the steps you perform for shutting down are:
15
-
-Backing up your cluster
16
-
-Making your nodes unschedulable
17
-
-Terminating pods from your nodes
18
-
-Shutting down nodes
19
-
-Shutting down any dependencies of your cluster
15
+
-Back up the cluster
16
+
-Cordon the nodes (mark as unschedulable)
17
+
-Drain pods from nodes
18
+
-Shut down nodes
19
+
-Shut down any dependencies of your cluster
20
20
21
21
Meanwhile, the steps you perform for restarting are:
22
-
-Powering on your cluster's dependencies
23
-
-Powering on your nodes and waiting until they're ready
24
-
-Making your nodes schedulable again
22
+
-Start external dependencies
23
+
-Power on your nodes and waiting until they are Ready
24
+
-Mark the nodes as schedulable again
25
25
26
26
<!-- body -->
27
27
@@ -36,7 +36,7 @@ If the cluster has etcd, create an [etcd backup](/docs/tasks/administer-cluster/
36
36
37
37
## Shut Down Clusters
38
38
39
-
You can shut down your cluster in a graceful manner by gracefully shutting down its nodes. This will allow you to gracefully restart the cluster for later use. While [node shutdown](https://kubernetes.io/docs/concepts/cluster-administration/node-shutdown/#graceful-node-shutdown) allows you to safely evict the pods of the node to another available node, cluster shutdowns do not need the evicted pods be rescheduled anywhere else until the cluster is restarted. Thus, this procedure suppresses any pod rescheduling from the nodes being shutdown until cluster restart.
39
+
You can shut down your cluster in a graceful manner by gracefully shutting down its nodes. This will allow you to gracefully restart the cluster for later use. While [node shutdown](https://kubernetes.io/docs/concepts/cluster-administration/node-shutdown/#graceful-node-shutdown) allows you to safely evict the pods of the node to another available node, cluster shutdowns do not need evicted pods to be rescheduled anywhere else until the cluster is restarted. Thus, this procedure suppresses any pod rescheduling from the nodes being shutdown until cluster restart.
40
40
41
41
### (Optional) Checking for certificate expiration
42
42
@@ -84,7 +84,7 @@ This section describes the process you need to restart the cluster after being g
84
84
85
85
If the cluster fails to recover, you restore the cluster to its previous state using the [etcd backup](/docs/tasks/administer-cluster/configure-upgrade-etcd/#restoring-an-etcd-cluster).
86
86
87
-
### Poweering on cluster dependencies
87
+
### Powering on cluster dependencies
88
88
Power on any cluster dependencies you need for your cluster, such as external storages.
0 commit comments