This document describes how to deploy an A4 GKE cluster. These clusters provide high-performance network topologies that let you efficiently run large-scale artificial intelligence (AI) and machine learning (ML) training workloads.
A4 accelerator-optimized machine types have NVIDIA B200 Blackwell GPUs attached and are ideal for foundation model training and serving.
To learn more about the A4 accelerator-optimized machine types, see the A4 machine type section in the Compute Engine documentation.
Before you begin
Before you start, make sure that 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 the
gcloud components updatecommand. Earlier gcloud CLI versions might not support running the commands in this document.
Required roles
To get the permissions that you need to deploy the cluster, ask your administrator to grant you the following IAM roles on the project:
-
Kubernetes Engine Admin (
roles/container.admin) -
Compute Admin (
roles/compute.admin) -
Storage Admin (
roles/storage.admin) -
Project IAM Admin (
roles/resourcemanager.projectIamAdmin) -
Service Account Admin (
roles/iam.serviceAccountAdmin) -
Service Account User (
roles/iam.serviceAccountUser) -
Service Usage Consumer (
roles/serviceusage.serviceUsageConsumer)
For more information about granting roles, see Manage access to projects, folders, and organizations.
You might also be able to get the required permissions through custom roles or other predefined roles.
Choose a consumption option and obtain capacity
To obtain capacity, complete the following steps:
Choose a consumption option: Make your choice based on how you want to get and use GPU resources. To learn more, see Choose a consumption option.
For GKE, consider the following additional information when choosing a consumption option:
- For more information about flex-start (Preview) and GKE, see About GPU obtainability with flex-start.
- Flex-start uses best-effort compact placement. To examine your topology, see View the physical topology of nodes in your GKE cluster.
- You can only get topology information when using Spot VMs if you configure compact placement.
Obtain capacity: The process to obtain capacity differs for each consumption option. To learn about the process for your chosen consumption option, see Capacity overview.
Requirements
The following requirements apply to an AI-optimized GKE cluster that uses A4 instances:
- GPU drivers: The B200 GPUs in A4 VM instances require a minimum of the R570 GPU driver version. GKE automatically installs this driver version by default on all A4 nodes that run the required minimum version for A4 (1.32.1-gke.1729000 or later).
- GPUDirect RDMA: To use GPUDirect RDMA with A4, use GKE version 1.32.2-gke.1475000 or later.
- Node images: To use GPUDirect RDMA, the GKE nodes must use a Container-Optimized OS node image. Ubuntu and Windows node images are not supported.
Create an A4 GKE cluster
To create an A4 GKE cluster, do the following:
- Launch Cloud Shell. You can use a different environment; however, we recommend that you use Cloud Shell because the dependencies are already pre-installed for Cluster Toolkit. If you don't want to use Cloud Shell, follow the instructions to install dependencies to prepare a different environment.
-
Create a Cloud Storage bucket to store the state of the Terraform
deployment:
gcloud storage buckets create gs://BUCKET_NAME \ --default-storage-class=STANDARD \ --project=PROJECT_ID \ --location=COMPUTE_REGION_TERRAFORM_STATE \ --uniform-bucket-level-access gcloud storage buckets update gs://BUCKET_NAME --versioningReplace the following variables:
BUCKET_NAME: the name of the new Cloud Storage bucket.PROJECT_ID: your Google Cloud project ID.COMPUTE_REGION_TERRAFORM_STATE: the compute region where you want to store the state of the Terraform deployment.
-
In the
examples/gke-a4/gke-a4-deployment.yamlblueprint from the GitHub repository, fill in the following settings in theterraform_backend_defaultsandvarssections to match the specific values for your deployment:Replace the following variables:
DEPLOYMENT_NAME: a unique name for the deployment, which must be between 6 and 30 characters in length. If the deployment name isn't unique within a project, cluster creation fails. The default value isgke-a4.BUCKET_NAME: the name of the Cloud Storage bucket that you created in the previous step.PROJECT_ID: your Google Cloud project ID.COMPUTE_REGION: the compute region for the cluster.COMPUTE_ZONE: the compute zone for the node pool of A4 machines. This zone should match the zone where machines are available in your reservation.NODE_COUNT: the number of A4 nodes in your cluster's node pool,IP_ADDRESS/SUFFIX: the IP address range that you want to let connect to the cluster. This CIDR block must include the IP address of the machine that calls Terraform. For more information, see How authorized networks work.- For the
extended_reservationfield (orreservationfield), use one of the following, depending on whether you want to target specific blocks in a reservation when you provision the node pool:- To place the node pool anywhere in the reservation, provide the
name of your reservation (
RESERVATION_NAME). - To target a specific block within your reservation, use the
reservation and block names in the following format:
If you don't know which blocks are available in your reservation, see View a reservation topology.RESERVATION_NAME/reservationBlocks/BLOCK_NAME
- To place the node pool anywhere in the reservation, provide the
name of your reservation (
- Set the boot disk sizes for each node of the system and
A4 node pools. The disk size that you need depends on
your use case. For example, if you use the disk as a cache to reduce the
latency of pulling an image repeatedly, you can set a larger disk size
to accommodate your framework, model, or container image:
SYSTEM_NODE_POOL_DISK_SIZE_GB: the size of the boot disk for each node of the system node pool. The smallest allowed disk size is10.A4_NODE_POOL_DISK_SIZE_GB: the size of the boot disk for each node of the A4 node pool. The smallest allowed disk size is10.
To modify advanced settings, edit the
examples/gke-a4/gke-a4.yamlfile. -
Optional: You can enable Cluster Health Scanner (CHS)
on the cluster. CHS checks the health of your GPU clusters by running tests
to verify that the clusters are ready to run your workloads. To enable CHS,
make the following changes in the
examples/gke-a4/gke-a4-deployment.yamlfile:- In the
varsblock, set theenable_periodic_health_checksfield totrue. - By default, the health checks run every Sunday at 12:00 am PST. If you
want to change this setting, in the
varsblock, set thehealth_check_schedulefield to a suitable value in cron format.Schedule in cron format:
* * * * * # | | | | | # | | | | day of the week (0-6) (Sunday to Saturday) # | | | month (1-12) # | | day of the month (1-31) # | hour (0-23) # minute (0-59)
- In the
-
Generate Application Default Credentials (ADC)
to provide access to Terraform. If you're using Cloud Shell, use the
gcloud auth application-default logincommand:gcloud auth application-default login -
Deploy the blueprint to provision the GKE infrastructure
by using A4 machine types:
cd ~/cluster-toolkit ./gcluster deploy -d \ examples/gke-a4/gke-a4-deployment.yaml \ examples/gke-a4/gke-a4.yamlNote: If you encounter an error at Jobset or Kueue installation when you deploy your blueprint, deploy the blueprint again with the addition of the
-wflag (./gcluster deploy -w -d ...) to complete the deployment. -
When prompted, select (A)pply to deploy the blueprint.
- The blueprint creates VPC networks, a GPU RDMA VPC network, service accounts, a cluster, and a node pool.
- To support the
fio-bench-job-templatejob template in the blueprint, Google Cloud buckets, network storage, and persistent volume resources are created.
Test network performance
We recommend that you validate the functionality of provisioned clusters. To do so, use NCCL/gIB tests, which are NVIDIA Collective Communications Library (NCCL) tests that are optimized for the Google environment.
Clean up resources
To avoid recurring charges for the resources that you used on this page, clean up the resources that are provisioned by Cluster Toolkit, including the VPC networks and the GKE cluster:
cd ~/cluster-toolkit
./gcluster destroy CLUSTER_NAME
Replace CLUSTER_NAME with the name of your cluster.
What's next
- To learn about scheduling workloads on your GKE clusters by using TAS and Kueue, see Schedule GKE workloads with Topology Aware Scheduling.
- To learn about managing common events that are relevant to GKE clusters and AI workloads, see Manage AI-optimized GKE clusters.
- For information about testing your environment for proper setup and optimization, see Cluster networking optimization overview.