Create a custom AI-optimized GKE cluster which uses N1

This document describes how you can create custom Google Kubernetes Engine (GKE) clusters that use the N1 general-purpose machine series with attached NVIDIA T4 or V100 GPUs to support your artificial intelligence (AI) and machine learning (ML) workloads. N1 machines with attached GPUs are considered General GPUs, which provide independent compute resources designed for mainstream AI tasks such as small-to-medium inference and graphics-intensive applications.

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 N1 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.

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

Requirements

For an AI-optimized GKE cluster that uses N1, your nodes must use NVIDIA driver version 535 or later.

Limitations

The following limitations apply to N1 as a General GPU machine series:

  • Multi-instance GPU (NVIDIA): N1 machine series doesn't support multi-instance GPUs (NVIDIA).
  • NCCL Fast Socket: you cannot use NCCL Fast Socket with N1 machines on GKE. While N1 machines support multi-node communication, they use standard VPC networking. For large-scale distributed training that requires maximum network throughput, we recommend using a Clustered GPU machine series, such as A3 High or A3 Mega (which use GPUDirect TCPX) or A3 Ultra and A4 (which use GPUDirect RDMA).

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 N1 machines with attached T4 or V100 GPUs.

    To create a node pool, use the following command:

    N1 with attached T4 GPUs

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

    N1 with attached V100 GPUs

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

    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 N1 machine type for your nodes, for example, n1-standard-4.
    • 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 want to use. Use nvidia-tesla-t4 for T4 GPUs, or nvidia-tesla-v100 for V100 GPUs.
    • 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