Like every commit has a reason and purpose, I think each deploy has a purpose and reason. Source code commits have a comment. But deploying doesn't have any.

How do I record a reason and purpose for each deploy automatically?

I need to keep a record of:

  • Who deployed to where and what time.
  • Why deployed? Bug fixes? Feature update? Emergency fix not on iteration plan?
  • Which git or svn ref was used?

Have anybody felt the need for this kind of system? How do you feel about my approach? How can I achieve my goal? I'm currently using Capistrano for deployment.


A bounty added. I'd like to hear more stories from different developers who are doing "continuous deployment".


I found two services that do deploy tracking:

link|improve this question
1  
Couldn't you just tag your releases and commit them with such a document? – ryeguy May 21 '10 at 15:51
What tools do you use for source control? Some will let you document/track releases. – FrustratedWithFormsDesigner May 21 '10 at 15:53
I use Git version control system. – TK. May 21 '10 at 15:59
Tagging only tells which revision was "tagged", right? I need meta-info of the tag. – TK. May 21 '10 at 16:07
feedback

3 Answers

Webistrano - http://wiki.github.com/peritor/webistrano - is a web interface to capistrano, that also tracks who's deployed what and when, so that could be worth investigating.

link|improve this answer
1  
This is an interesting approach. Hooking up with Redmine or something might be cooler, but I will look into it. – TK. May 21 '10 at 16:32
It would be ideal if software like Redmine has the feature built-in. – TK. May 24 '10 at 13:49
Integration of Webistrano and Redmine would be the bomb. A plugin for Redmine would be better than a built-in feature IMO. I guess it depends on your organization's scope as to whether you like SaaS or a monolithic approach to software. – Anthony Topper Nov 23 '11 at 14:24
feedback

My current project uses a modified version of the apinsein's git-deployment recipe, which (when you tell cap to do a deploy) will tag current HEAD with a Git tag (which gives you all the benefits of normal Git commits).

link|improve this answer
feedback

I've built a web service for this exact problem, http://deploytracking.com, it hooks into capistrano and records the time, user, branch, ref, environment and repo that was involved in the deployment.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.