currently we scaled one of our statefulsets to have 11 replicas. Our current updateStrategy is
updateStrategy:
type: RollingUpdate
If we deploy the statefulset from scratch, Kubernetes starts them one after another. To start one replica it needs around 5 Minutes. So in total we wait 55 Minutes just to fill up the capacity.
Is there a way to fill up the capacity at once when starting from scratch? So that all 11 replicas will start simultaneously?
Upgrades on the already existing statefulset should be handled via RollingUpdate due to failure safety.
Best wishes, Stephan