From c0cbe608e2806fca8f44ee6288178ff750601314 Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Mon, 1 Jun 2026 19:22:59 +1000 Subject: [PATCH] chore: remove gke-spot toleration from dist-tests runner The release-tests GKE cluster now provisions on-demand (standard) nodes rather than spot instances, so node pools no longer carry the cloud.google.com/gke-spot taint. The matching toleration is therefore a no-op and is removed; pod scheduling still relies on the workload-type=tests-pods pool label selector. --- .../LogosStorageDiscordBotPlugin/DiscordBotContainerRecipe.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/ProjectPlugins/LogosStorageDiscordBotPlugin/DiscordBotContainerRecipe.cs b/ProjectPlugins/LogosStorageDiscordBotPlugin/DiscordBotContainerRecipe.cs index 37c93f3f..6f1840a7 100644 --- a/ProjectPlugins/LogosStorageDiscordBotPlugin/DiscordBotContainerRecipe.cs +++ b/ProjectPlugins/LogosStorageDiscordBotPlugin/DiscordBotContainerRecipe.cs @@ -16,7 +16,6 @@ namespace LogosStorageDiscordBotPlugin var config = startupConfig.Get(); ScheduleInPoolsWithLabel("workload-type", "tests-pods"); - AddToleration("cloud.google.com/gke-spot", "true", "NoSchedule"); AddEnvVar("TOKEN", config.Token); AddEnvVar("SERVERNAME", config.ServerName);