You can check the current resource limits of a pod by using the kubectl describe command. Here’s how you can do it:
kubectl describe pod <pod-name>
This command will display detailed information about the pod, including its resource limits and requests under the "Containers" section.
Alternatively, if you want to check the resource limits for a deployment, you can use:
kubectl describe deployment <deployment-name>
Both commands will show you the configured resource limits and requests for the specified pod or deployment.
