rollback vs redeploy
whats the difference between rollback vs redeploy on old deployments?
Solution:Jump to solution
a rollback rolls back everything, from the image to the service variables
a redeploy will just recreate your container with the same config and code
so a rollback will roll your deployment back to a previous state
and redeploy will just recreate that deployment...
4 Replies
Project ID:
N/A
N/A
Solution
a rollback rolls back everything, from the image to the service variables
a redeploy will just recreate your container with the same config and code
so a rollback will roll your deployment back to a previous state
and redeploy will just recreate that deployment
Thx