|
|
|
|
|
by akurilin
4348 days ago
|
|
1. Is there an easy way of integrating an existing large ansible project with CI to use it for deployment?
2. With continuous deployment, how do you coordinate multiple repositories being changed all at once and potentially numerous migrations that need to be done beforehand? e.g. say you're changing the schema and the web API and all of its clients. Can you CI the entire system at once rather than one git repo at a time? |
|
The basic workflow that we at Codeship tell people is test each repository by itself and if that works push to a staging environment.
Once the push into the staging environment is done you restart the last build on an integration test repository that will thoroughly integration test the whole staging system.
When you build service oriented architecture some backwards compatibility for the time that systems are updated are in our opinion the best way. If there are breaking changes treat every part of the infrastructure as a separate api with specific guarantees and just build a v2 api so you can update the clients, but the old ones still work for a while until you can remove the old clients.