From 3d740e90c15a5d8765445460b5261f59f2d4a096 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Wed, 21 Jan 2026 14:10:26 -0800 Subject: [PATCH] use slightly larger GKE nodes due to Insufficient cpu errors Error observed during deploying the Pinniped Supervisor was... Pending: Unschedulable, message: 0/3 nodes are available: 3 Insufficient cpu. no new claims to deallocate, preemption: 0/3 nodes are available: 3 No preemption victims found for incoming pod. --- pipelines/shared-tasks/deploy-gke-cluster/task.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipelines/shared-tasks/deploy-gke-cluster/task.sh b/pipelines/shared-tasks/deploy-gke-cluster/task.sh index 76655c951..027e87832 100755 --- a/pipelines/shared-tasks/deploy-gke-cluster/task.sh +++ b/pipelines/shared-tasks/deploy-gke-cluster/task.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2020-2025 the Pinniped contributors. All Rights Reserved. +# Copyright 2020-2026 the Pinniped contributors. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 set -euo pipefail @@ -18,7 +18,7 @@ if [[ -n "$CLUSTER_REGION" ]]; then region_or_zone_flag="--region=$CLUSTER_REGION" region_or_zone_suffix="region-$CLUSTER_REGION" # regional clusters have 3 nodes (one per zone, minimum 3 zones), so use a smaller machine type - machine_type="e2-medium" + machine_type="e2-standard-2" else region_or_zone_flag="--zone=$CLUSTER_ZONE" region_or_zone_suffix="zone-$CLUSTER_ZONE"