Among Kubernetes, OpenShift, Docker Swarm and Docker DataCenter deployment tools which all are having automatic rollback in case of any failure happens?
Asked
Active
Viewed 372 times
1 Answers
4
All of them have a sort of rollback mechanism built-in with commands available for you to control. However, these are not fully automated and you might have to do it manually. For Kubernetes, here is the related github issue and another issue for Swarm. Docker DataCenter use Swarm already.
Rollback documentations I was able to find:
- Kubernetes: Rolling Back a Deployment
- Swarm: Roll back to the previous version of a service (features
--update-delay
) - OpenShift: Rolling Back a Deployment

hurturk
- 5,214
- 24
- 41