At the moment we are deploying our whole application chain together and at once to production, because of the many dependencies that the systems have. Our scrum teams are business theme based, in order to ensure real business value at the end of each sprint with every user story, so it often happens, that user stories needed changes in several applications. And we have several scrum teams, working on the same systems. Logically we end up acceptance testing everything in a huge acceptance and (semi automated) regression test. But doing a big bang rollout to production is very time consuming, error prone and not scalable anymore... (or is it?) With continuous deployment we would like to enable the team to self service a roll out to production, so business rolls out features when they want to, not based on an IT schedule. But how do we manage to rollout changes (code, DB scripts) that are distributed over several codebases and find a strategy in order to deal with the dependencies between applications. Whats the strategy to have scalable continuous deployment? And how do you transition to this point? What do you think?
|
feedback
|
|
(That is quite a few questions inside one big question.) But I would refer to the Continuous Delivery book http://www.amazon.com/Continuous-Delivery-Deployment-Automation-Addison-Wesley/dp/0321601912/ Edit: (As commented you already read this book) Some suggestions which you may already do, but for others with similar issue:
But I have no solid solution to the inter-dependency auto-deploy strategy you actually ask for :| | |||||
feedback
|
|
There is no single silver bullet that will solve your problem but Kwatee (http://www.kwatee.net) can go a long way in the right direction. Kwatee deals with distributed/collaborative applications over multiple servers if needed and can take care of triggering pre-requisite DB ugrade scripts and the like using pre-deploy and post-deploy actions. You can also configure parameters for various deployment environments (dev, test, prod). Kwatee has a web interface which make configuration easy but you'd get the best of all worlds by including it (via python CLI commands or Ant task) in a continuous integration tool. | |||
|
feedback
|
|
I use CruiseControl for continuous integration. It's easy to set it up so that, whenever someone checks something into the trunk, a build and automatic regression test is triggered. If the build or test fails, all devs that committed code since the last build receive an email with the list of possible culprit revisions. Devs that break the build (though not the regression test) have to bring donuts the next day. The specific tools you use for continuous integration and testing may depend on your language(s) and platforms, but the concept is the same. See http://cruisecontrol.sourceforge.net/ Hope it helps. | |||
feedback
|
|
I answered a very similar question over here: Best-practice for continuous integration and deployment That might be worth checking out. | |||
|
feedback
|
|
I might misinterpret but I think what you are saying is acceptance testing for the whole system is hard and you want each Scrum team to be able to lift their own weight? I think even if each Scrum team can do some of the testing you cannot release without going through a system testing phase prior to release. In other words, system testing is a must but the frequency can be adjusted provided each component can be tested separately with substituted dependencies. If isolated testing and small scale testing can be done by separate Scrum team then system tests can be completed once every 2 to 3 sprint where the tester's focus is system testing while testers focus more on bug fixes. | |||
|
feedback
|