statefulset roling update effects high availibility

8/7/2018

Any way in kubernetes to first deploy a new pod with a new version, then take down the updated pod and add the one we created in advance to the statefulset ?When some pod gets recreated during rolling update it can take a lot of time and the app can be unavailable since it needs quorum for example.

-- Mika R
kubernetes
statefulset

1 Answer

8/7/2018

You can, using RollingUpdate strategy type

-- hdhruna
Source: StackOverflow