From 0f7f8fc58a8dfd343ebb185d623b03765935a351 Mon Sep 17 00:00:00 2001 From: Nate Appelson Date: Thu, 21 Dec 2023 18:13:51 -0500 Subject: [PATCH] Specify that you can unpause by setting autoscaling.keda.sh/paused=false Signed-off-by: Nate Appelson --- content/docs/2.13/concepts/scaling-deployments.md | 2 +- content/docs/2.13/concepts/scaling-jobs.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/2.13/concepts/scaling-deployments.md b/content/docs/2.13/concepts/scaling-deployments.md index ce8107989..cceef2c8a 100644 --- a/content/docs/2.13/concepts/scaling-deployments.md +++ b/content/docs/2.13/concepts/scaling-deployments.md @@ -284,7 +284,7 @@ The annotation `autoscaling.keda.sh/paused` will pause scaling immediately and u Typically, either one or the other is being used given they serve a different purpose/scenario. However, if both `paused` and `paused-replicas` are set, KEDA will scale your current workload to the number specified count in `paused-replicas` and then pause autoscaling. -To enable/unpause autoscaling again, simply remove all paused annotations from the `ScaledObject` definition. +To enable/unpause autoscaling again, simply remove all paused annotations from the `ScaledObject` definition. If you paused with `autoscaling.keda.sh/paused`, you can also set the annotation to `false` to unpause. ### Scaling Modifiers (Experimental) diff --git a/content/docs/2.13/concepts/scaling-jobs.md b/content/docs/2.13/concepts/scaling-jobs.md index 2423ca290..3d6138b33 100644 --- a/content/docs/2.13/concepts/scaling-jobs.md +++ b/content/docs/2.13/concepts/scaling-jobs.md @@ -257,7 +257,7 @@ metadata: autoscaling.keda.sh/paused: true ``` -The above annotation will pause autoscaling. To enable autoscaling again, simply remove the annotation from the `ScaledJob` definition. +The above annotation will pause autoscaling. To enable autoscaling again, simply remove the annotation from the `ScaledJob` definition or set the value to `false`. # Sample