↧
Answer by Manvendra Jina for How to see if a pod is topping its CPU limit?
Use kubernetes dashboard to analyse your pods. To deploy you need to use "kubectl proxy" command. kubectl proxy Create a token for your kube dashboard configuration and you will be able to monitor your...
View ArticleAnswer by Ijaz Ahmad Khan for How to see if a pod is topping its CPU limit?
Regardless , you need to re-architect your setup. run and scale nginx independently on separate pods run php app on separate pods
View ArticleAnswer by Prafull Ladha for How to see if a pod is topping its CPU limit?
To check the pods that use most memory and CPU, you can use the kubectl top command, but it doesn't sort the pods on basis of highest usage. You can only see the current usage of pods. $ kubectl top...
View ArticleHow to see if a pod is topping its CPU limit?
I have a pod in kubernetes where it's slowing down under heavy load. The pod has two containers -- Nginx and PHP. I see that Nginx is set to use "100m" CPU and PHP is set to use 1 CPU (1 core). I'm...
View Article