Does `helm upgrade` use rolling restarts for `deployments`, yes/no? if not then what is the default?
-
I ask because:
- I want to know what is the default
helm upgrade
behavior - I might need to change the default
helm upgrade
behavior
Does
helm upgrade
use rolling restarts fordeployments
? If not then what is the default?If
helm upgrade
is not the thing that controls the behavior fordeployments
, please say what does. (I suspect thedeployment
controls the behavior of what happens during ahelm upgrade
but I am not sure so I am asking.)
- I want to know what is the default
-
Helm upgrade is making revisions to the deployment which means, you can roll back to the last deployment. regarding the restart of current pods, it will happen based on your definition of Deployment.spec.strategy.rollingUpdate will recreate the pods!