Had a question. Does a Recreate update strategy support a rollback, or only Roll . . .

Abhinav Thakur:
Had a question. Does a Recreate update strategy support a rollback, or only RollingUpdate supports it?

Fernando Jordan Silva:
Both strategies support rollback

Abhinav Thakur:
Thank you so much! As a followup question, I wanted to ask, is it necessary to pass the ‘–record’ parameter everytime on a apply/delete command for Deployments to enable rollback, or is it enabled anyway? Is the ‘record’ flag used only to record events to display it to the user, or K8S needs those flags to initiate proper rollbacks?

Fernando Jordan Silva:
You don’t need it because the rollback strategies are attached to deployments / resultsets of your application

Abhinav Thakur:
Thank you!