|
|
|
|
|
by troupe
3053 days ago
|
|
Agreed. If continuous delivery means you can release your software at any time, then that seems to assume you have integrated all the pieces of your software. If continuous deployment means automatically deploying every passing build, it seem to assume that when you get a passing build, you are in a state where you can deploy. So continuous delivery depends on continuous integration and continuous deployment depends on continuous delivery. I supposed you could just deploy stuff to prod when the build finishes without being in a state where you can safely deploy. Well now that I think of it I have seen places that do that, but it never turns out well. |
|
It's similar to how continuous integration means your master is always stable (all builds work and all tests pass.)
If you can't do a 1% (or 10%) canaried deploy, you're not yet ready for continuous deployment.