A HorizontalPodAutoscaler (HPA) watches a workload and grows or shrinks its replicas to meet a target metric. The HorizontalPodAutoscaler YAML Generator writes that manifest from a form so you do not have to recall the autoscaling/v2 schema.
You set the HPA name and namespace, then point it at a target - a Deployment, StatefulSet or ReplicaSet - by name. You set the minimum and maximum replica counts, then choose one or both of CPU and memory utilization targets (as percentages). The generator builds the metrics list with the correct Resource metric type. The resulting YAML is valid autoscaling/v2.
The name is validated as an RFC 1123 label, the target name is required, max must be at least min, and at least one metric is required. Problems are reported in a clear panel. Everything runs locally and nothing is uploaded.