Reputation: 1481
I am running an Azure DevOps self-hosted agent inside a container on Azure Kubernetes Service (AKS). The AKS node pool uses Standard_D16ds_v5 (16 vCPUs, 64 GB RAM, Ephemeral SSD).
Issue:
What I Checked:
Questions:
Any insights would be greatly appreciated!
Upvotes: 0
Views: 41
Reputation: 13944
There are many ways can cause High CPU usage in AKS clusters, however, the most causes could be related to user configuration.
You can follow the main steps below to troubleshoot the High CPU usage in AKS clusters:
Use the Container Insights feature of AKS to identify nodes/containers with high CPU usage.
Consider implementing any of the following best practices for avoiding high CPU usage:
agentpool
) to run your workloads to prevent overloading the system node pool and provide better performance.For more details, you can refer to the documentation "Troubleshoot high CPU usage in AKS clusters".
Upvotes: 0