The `kubectl get hpa` command lets you view the status of Horizontal Pod Autoscalers (HPAs) in your Kubernetes cluster. It provides insights into how your applications are scaling based on the specified metrics like CPU usage. To check the autoscaling status, simply run:
kubectl get hpa
For more detailed information, including metrics and conditions, use:
kubectl describe hpa <HPA_NAME>