This page explains how to manually resize Google Kubernetes Engine (GKE) Standard clusters. You can resize a cluster to increase or decrease the number of nodes in that cluster. Alternatively, you can autoscale your cluster, where GKE automatically resizes your node pools in response to changing conditions, such as changes in your workloads and resource usage.
These instructions don't apply to GKE Autopilot clusters, which automatically resize based on the number of Pods in the cluster.
When you add or remove nodes in your cluster, GKE adds or removes
the associated virtual machine (VM) instances from the underlying
Compute Engine Managed Instance Groups
(MIGs) provisioned for
your node pools. For removing nodes, do not use kubectl delete node
as this
does not delete the Compute Engine VM instance in the node pool's underlying
MIG. Use cluster autoscaler or manually decrease the size of your
cluster.
Before you begin
Before you start, make sure you have performed the following tasks:
- Enable the Google Kubernetes Engine API. Enable Google Kubernetes Engine API
- If you want to use the Google Cloud CLI for this task,
install and then
initialize the
gcloud CLI. If you previously installed the gcloud CLI, get the latest
version by running
gcloud components update
.
Increase the size of your cluster
When you increase the size of a cluster, the following changes occur:
- New node instances are created using the same configuration as the existing instances.
- New Pods may be scheduled on the new instances.
Existing Pods are not moved to the new instances.
gcloud
To increase the size of a cluster's node pools, run the gcloud container clusters resize
command:
gcloud container clusters resize CLUSTER_NAME --node-pool POOL_NAME \ --num-nodes NUM_NODES
Replace the following:
CLUSTER_NAME
: the name of the cluster to resize.POOL_NAME
: the name of the node pool to resize.NUM_NODES
: the number of nodes in the pool in a zonal cluster. If you use multi-zonal or regional clusters,NUM_NODES
is the number of nodes for each zone the node pools is in.
Repeat this command for each node pool. If your cluster has only one node
pool, omit the --node-pool
flag.
Console
To increase the size of a cluster's node pools, perform the following steps:
Go to the Google Kubernetes Engine page in the Google Cloud console.
Beside the cluster you want to edit, click more_vert Actions, then click Edit.
Click the Nodes tab next to the Details tab.
In the Node Pools section, click the name of the node pool that you want to increase in size.
Click edit Resize.
In the Number of nodes field, enter how many nodes that you want in the node pool, and then click Resize.
Repeat for each node pool as needed.
Decrease the size of your cluster
When you decrease the size of a cluster, the following changes occur:
- GKE gracefully terminates nodes that are being deleted, using
the drain
process to remove the Pods from the instance.
PodDisruptionBudget
andterminationGracePeriodSeconds
are both respected for up to one hour. - Pods managed by a replication controller are rescheduled by the controller to run on the remaining instances.
- Pods not managed by a replication controller are not restarted.
The MIG does not differentiate between instances running Pods and instances without Pods. Resizing down removes instances at random.
To learn how to add node pools and to manage existing ones, refer to Adding and managing node pools.
gcloud
To decrease the size of a cluster's node pools, run the gcloud container clusters resize
command:
gcloud container clusters resize CLUSTER_NAME --node-pool POOL_NAME \ --num-nodes NUM_NODES
Replace the following:
CLUSTER_NAME
: the name of the cluster to resize.POOL_NAME
: the name of the node pool to resize.NUM_NODES
: the number of nodes in the pool in a zonal cluster. If you use multi-zonal or regional clusters,NUM_NODES
is the number of nodes for each zone the node pools is in.
Repeat this command for each node pool. If your cluster has only one node
pool, omit the --node-pool
flag.
Console
To decrease the size of a cluster's node pools, perform the following steps:
Go to the Google Kubernetes Engine page in the Google Cloud console.
Beside the cluster you want to edit, click more_vert Actions, then click Edit.
Click the Nodes tab next to the Details tab.
In the Node Pools section, click the name of the node pool that you want to decrease in size.
Click edit Resize.
In the Number of nodes field, enter how many nodes that you want in the node pool, and then click Resize.
Repeat for each node pool as needed.
Autoscaling a cluster
GKE's cluster autoscaler feature automatically resizes your node pools in response to changing conditions, such as changes in your workloads and resource usage.
To learn more about how autoscaling works, refer to the cluster autoscaler documentation. To set up autoscaling for your cluster, see Autoscaling a cluster.