diff --git a/content/docs/2.13/concepts/scaling-deployments.md b/content/docs/2.13/concepts/scaling-deployments.md index 6519614f1..fbb707f36 100644 --- a/content/docs/2.13/concepts/scaling-deployments.md +++ b/content/docs/2.13/concepts/scaling-deployments.md @@ -288,7 +288,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