forked from kedacore/keda-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add troubleshooting section explaining the new behavior on upst…
…ream errors (kedacore#654)
- Loading branch information
Jorge Turrado Ferrero
authored
Feb 14, 2022
1 parent
261eb9e
commit 6c50f7b
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
+++ | ||
title = "Why is my `ScaledObject` paused?" | ||
weight = 1 | ||
+++ | ||
|
||
When KEDA has upstream errors to get scaler source information it will keep the current instance count of the workload unless the `fallback` section is defined. | ||
|
||
This behavior might feel like the autoscaling is not happening, but in reality, it is because of problems related to the scaler source. | ||
|
||
You can check if this is your case by reviewing the logs from the KEDA pods where you should see errors in both our Operator and Metrics server. You can also check a status of the ScaledObject (`READY` and `ACTIVE` condition) by running following command: | ||
|
||
```bash | ||
$ kubectl get scaledobject MY-SCALED-OBJECT | ||
``` |