mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
1.3 KiB
1.3 KiB
Scale Resources in Argo CD UI
This enables users to scale resources directly from the Argo CD UI. Users will be able to increase or decrease the number of replicas (Pods) for Deployments and StatefulSets by using an input field. The feature aims to enhance user experience, especially for non-technical users, by eliminating the need to modify configuration files or use kubectl commands for scaling.
Example Usage
- User navigates to a Deployment or StatefulSet in any Argo CD application.
- User clicks on the Actions dropdown and selects "Scale".

- A modal pops up showing an input field
Enter input parameters for action: scalewith the current number of Pods. - User adjusts the number of Pods by entering a number.

- User presses OK, and the resource is scaled accordingly.

Note
This feature will only apply to
Deployments, andStatefulSets.
Note
If you use HPA (Horizontal Pod Autoscaling) or enabled Argo CD auto-sync, changing the replica count in scale actions would be overwritten. Ensure that invalid values (e.g.,
non-numericcharacters,negativenumbers, or values beyond themax integer limit) cannot be entered.