Hacker News new | ask | show | jobs
by instig007 616 days ago
Have a rubust CI and tests, and deploy as early as you can.
1 comments

Yup. At my last gig, upgrading to a new version meant setting the Docker tag to the new one and running `make test`. If that passed, we were 99% certain it was safe for prod. The other 1% was covered by running in pre-prod for a couple days.
This is the way.