You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/keda-troubleshoot.md
+48-2Lines changed: 48 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,9 @@ ms.author: tomkerkhove
9
9
10
10
# Kubernetes Event-driven Autoscaling (KEDA) AKS add-on Troubleshooting Guides
11
11
12
-
When you deploy the KEDA AKS add-on, you could possibly experience problems associated with configuration of the application autoscaler. The following guide will assist you on how to troubleshoot errors and resolve common problems.
12
+
When you deploy the KEDA AKS add-on, you could possibly experience problems associated with configuration of the application autoscaler.
13
+
14
+
The following guide will assist you on how to troubleshoot errors and resolve common problems with the add-on, in addition to the official KEDA [FAQ][keda-faq] & [troubleshooting guide][keda-troubleshooting].
13
15
14
16
## Verifying and Troubleshooting KEDA components
15
17
@@ -28,6 +30,46 @@ APP
28
30
2.7.0
29
31
```
30
32
33
+
### Ensuring the cluster firewall is configured correctly
34
+
35
+
It might happen that KEDA isn't scaling applications because it can't start up.
36
+
37
+
When checking the operator logs, you might find errors similar to the following:
38
+
39
+
```output
40
+
1.6545953013458195e+09 ERROR Failed to get API Group-Resources {"error": "Get \"https://10.0.0.1:443/api?timeout=32s\": EOF"}
E0607 09:53:15.344324 1 logr.go:279] keda_metrics_adapter "msg"="Failed to get API Group-Resources" "error"="Get \"https://10.0.0.1:443/api?timeout=32s\": EOF"
E0607 09:53:15.344399 1 main.go:168] keda_metrics_adapter "msg"="unable to run external metrics adapter" "error"="Get \"https://10.0.0.1:443/api?timeout=32s\": EOF"
67
+
```
68
+
69
+
This most likely means that the KEDA add-on isn't able to start up due to a misconfigured firewall.
70
+
71
+
In order to make sure it runs correctly, make sure to configure the firewall to meet [the requirements][aks-firewall-requirements].
72
+
31
73
### Enabling add-on on clusters with self-managed open-source KEDA installations
32
74
33
75
While Kubernetes only allows one metric server to be installed, you can in theory install KEDA multiple times. However, it isn't recommended given only one installation will work.
@@ -36,7 +78,7 @@ When the KEDA add-on is installed in an AKS cluster, the previous installation o
36
78
37
79
This means that the customization and configuration of the self-installed KEDA deployment will get lost and no longer be applied.
38
80
39
-
While there's a possibility that the existing autoscaling will keep on working, there's a risk given it will be configured differently and won't support features such as managed identity.
81
+
While there's a possibility that the existing autoscaling will keep on working, it introduces a risk given it will be configured differently and won't support features such as managed identity.
40
82
41
83
It's recommended to uninstall existing KEDA installations before enabling the KEDA add-on given the installation will succeed without any error.
0 commit comments