Create a custom AI-optimized GKE cluster which uses A2

This document describes how you can create custom Google Kubernetes Engine (GKE) clusters that use the A2 Standard (A100 40GB) or A2 Ultra (A100 80GB) accelerator-optimized machine types to support your artificial intelligence (AI) and machine learning (ML) workloads. A2 is a General GPU machine series, which provide independent compute resources designed for mainstream AI tasks such as training smaller models and single-host inference.

GKE provides a single platform surface to run a diverse set of workloads for your organization, reducing the operational burden of managing multiple platforms.

To create an AI-optimized GKE cluster that uses the A2 machine series, you'll do the following:

  1. Create the GKE environment
  2. Connect to your cluster
  3. Configure your Pod manifests

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
  • 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 update command. Earlier gcloud CLI versions might not support running the commands in this document.

Required roles

To get the permissions that you need to create and manage a GKE cluster, ask your administrator to grant you the following IAM roles on the project:

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

  1. Choose a consumption option. Make your choice based on how you want to get and use GPU resources. For more information, see Choose a consumption option.

    For GKE, consider the following additional information when you choose a consumption option:

  2. Obtain capacity. Learn how to obtain capacity for your consumption option.

Requirements

For an AI-optimized GKE cluster which uses A2 machines, your GPU nodes must use NVIDIA driver version 450.80.02 or later.

Limitations

The following limitations apply to A2 machines as a General GPU:

  • Multi-instance GPU: Although A2 (A100 GPUs) support hardware partitioning, multi-instance GPU (NVIDIA) is not supported when using GKE Autopilot. For workloads that require A100 GPU partitioning, you must use GKE Standard.

Create the GKE environment

You can create a cluster in Autopilot or Standard mode.

Autopilot

  1. To create an Autopilot cluster, run the following command:

    gcloud container clusters create-auto CLUSTER_NAME \
        --region=REGION
    

    Replace the following:

    • CLUSTER_NAME: the name of your cluster.
    • REGION: the region for your cluster.

Standard

Create a Standard cluster and GPU node pool:

  1. To create a Standard cluster, run the following command:

    gcloud container clusters create CLUSTER_NAME \
        --region=REGION \
        --enable-ip-alias
    

    Replace the following:

    • CLUSTER_NAME: the name of your cluster.
    • REGION: the region for your cluster.
  2. Create the node pool. After creating your cluster, you can add a node pool with A2 GPUs.

    Note the following:

    • A2 Standard machine types (a2-highgpu) require you to manually attach Local SSD disks to your nodes to use them for scratch space or caching. Use the --local-ssd-count flag.
    • A2 Ultra machine types (a2-ultragpu) automatically include a fixed number of Local SSD disks by default.
    • For multi-node training workloads, we recommend using a compact placement policy to minimize networking latency between nodes.
    • For multi-node training workloads, we also recommend enabling NCCL Fast Socket to improve network performance.

    A2 Standard (A100 40GB)

    gcloud container node-pools create NODE_POOL_NAME \
        --cluster=CLUSTER_NAME \
        --region=REGION \
        --node-locations=ZONE \
        --machine-type=MACHINE_TYPE \
        --accelerator=type=nvidia-tesla-a100,count=AMOUNT,gpu-driver-version=LATEST \
        --placement-type=COMPACT \
        --scopes="https://www.googleapis.com/auth/cloud-platform" \
        --local-ssd-count=LOCAL_SSD_COUNT
    

    A2 Ultra (A100 80GB)

    gcloud container node-pools create NODE_POOL_NAME \
        --cluster=CLUSTER_NAME \
        --region=REGION \
        --node-locations=ZONE \
        --machine-type=MACHINE_TYPE \
        --accelerator=type=nvidia-a100-80gb,count=AMOUNT,gpu-driver-version=LATEST \
        --placement-type=COMPACT \
        --scopes="https://www.googleapis.com/auth/cloud-platform"
    

    Replace the following:

    • CLUSTER_NAME: the name of your cluster.
    • REGION: the region for your cluster.
    • ZONE: one or more zones within your region that has the requested GPUs available, for example, us-central1-a. This is required when using compact placement.
    • NODE_POOL_NAME: the name of your node pool.
    • MACHINE_TYPE: the machine type for your nodes, for example, a2-highgpu-1g.
    • AMOUNT: the number of GPUs to attach to each node.
    • LOCAL_SSD_COUNT: the number of Local SSD volumes to provision on each node.

Connect to your cluster

Connect to your cluster so that you can run the kubectl commands in the next sections:

gcloud container clusters get-credentials CLUSTER_NAME \
    --region=REGION

Replace the following:

  • CLUSTER_NAME: the name of your cluster.
  • REGION: the region for your cluster.

For more information, see Install kubectl and configure cluster access.

Configure your Pod manifest (Autopilot only)

If you created an Autopilot cluster, you must select the appropriate GPUs in your Pod manifests so that GKE provisions the hardware.

  1. Specify the chosen GPU type and specific reservation by using node selectors:

    spec:
      nodeSelector:
        cloud.google.com/gke-accelerator: ACCELERATOR
        cloud.google.com/gke-gpu-driver-version: latest
        # Optional: Include if using reserved capacity
        cloud.google.com/reservation-name: RESERVATION_NAME
        cloud.google.com/reservation-affinity: "specific"
    

    Replace the following:

    • ACCELERATOR: the accelerator that you reserved. You must use nvidia-tesla-a100 (for A2 Standard) or nvidia-a100-80gb (for A2 Ultra).
    • RESERVATION_NAME: the name of the Compute Engine capacity reservation. To consume shared reservations, or specific blocks and sub-blocks of reservations, see the respective sections in Consuming reserved zonal path resources.
  2. Add the following resources to the container that requests GPUs:

    containers:
      - name: my-container
        resources:
          limits:
            nvidia.com/gpu: AMOUNT
    

    Replace AMOUNT with the number of GPUs to attach to each node.

What's next