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); diff --git a/ProjectPlugins/LogosStorageDiscordBotPlugin/RewarderBotContainerRecipe.cs b/ProjectPlugins/LogosStorageDiscordBotPlugin/RewarderBotContainerRecipe.cs index 8baf1d20..125c842f 100644 --- a/ProjectPlugins/LogosStorageDiscordBotPlugin/RewarderBotContainerRecipe.cs +++ b/ProjectPlugins/LogosStorageDiscordBotPlugin/RewarderBotContainerRecipe.cs @@ -14,7 +14,6 @@ namespace LogosStorageDiscordBotPlugin var config = startupConfig.Get(); ScheduleInPoolsWithLabel("workload-type", "tests-pods"); - AddToleration("cloud.google.com/gke-spot", "true", "NoSchedule"); AddEnvVar("DISCORDBOTHOST", config.DiscordBotHost); AddEnvVar("DISCORDBOTPORT", config.DiscordBotPort.ToString()); diff --git a/ProjectPlugins/MetricsPlugin/PrometheusContainerRecipe.cs b/ProjectPlugins/MetricsPlugin/PrometheusContainerRecipe.cs index 5029e16f..44c1c12c 100644 --- a/ProjectPlugins/MetricsPlugin/PrometheusContainerRecipe.cs +++ b/ProjectPlugins/MetricsPlugin/PrometheusContainerRecipe.cs @@ -15,7 +15,6 @@ namespace MetricsPlugin var config = startupConfig.Get(); ScheduleInPoolsWithLabel("workload-type", "tests-pods"); - AddToleration("cloud.google.com/gke-spot", "true", "NoSchedule"); AddExposedPortAndVar("PROM_PORT", PortTag); AddEnvVar("PROM_CONFIG", config.PrometheusConfigBase64); diff --git a/ProjectPlugins/StoragePlugin/ContainerRecipe.cs b/ProjectPlugins/StoragePlugin/ContainerRecipe.cs index c245e30a..ac5ca6f3 100644 --- a/ProjectPlugins/StoragePlugin/ContainerRecipe.cs +++ b/ProjectPlugins/StoragePlugin/ContainerRecipe.cs @@ -29,9 +29,8 @@ namespace StoragePlugin SetResourcesRequest(milliCPUs: 100, memory: 100.MB()); //SetResourceLimits(milliCPUs: 4000, memory: 12.GB()); - // Schedule storage nodes on the spot node pool, away from the test runner. + // Schedule storage nodes on the tests node pool, away from the test runner. ScheduleInPoolsWithLabel("workload-type", "tests-pods"); - AddToleration("cloud.google.com/gke-spot", "true", "NoSchedule"); var config = startupConfig.Get();