Is there any way to perform an update action on all pods simultaneously?
We have a process running in kubernetes as a stateful set where we want to update all the pods at the same time. We cannot seem to find a configuration for that. I am aware of rollingUpdate, which only updates one pod at a time.
This is what we have currently
updateStrategy:
rollingUpdate:
partition: 2
type: RollingUpdate
I also tried with maxUnavailable, but still did not work.
Is there any other hack to get this done?