Issue
I am having trouble scaling the number of instances of AppSmith running in my cluster using a HelmRelease file. Although I changed the replica count in the file, the change is not reflected in the cluster. I tried enabling autoscaling with min and max replicas, but it is not available in the Community Edition that I am using. Can you help me find a solution to this issue?
Resolution
Autoscaling is not currently supported in the community edition. In the community edition, we get a statefulSet, and in order to scale the number of instances of Appsmith you can run the following command:
kubectl scale statefulsets/<statefulset-name> -n <namespace> --replicas=<replicas_required>