-
I've installed argocd using helm chart. I want to limit argocd CPU usage to make cluster stable otherwise argocd sometimes uses too much CPU that causes server overloading, or other issues. Which configurations do I have to change to limit CPU usage? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey @themisir, you'd probably want to set resource limits on This is a Kubernetes setting. You can read more about how to configure CPU limits here: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ |
Beta Was this translation helpful? Give feedback.
Hey @themisir, you'd probably want to set resource limits on
argocd-application-controller
workload, which I'd assume is the main consumer of CPU cycles in Argo CD.This is a Kubernetes setting. You can read more about how to configure CPU limits here: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/