Hearing a lot about DevOps (agile technique in operations) these days. Can someone shed some light on the level of involvement by the actual developers in this process ??
-
@Pierre - you want me to elaborate what DevOps is , or the involvement that I am thinking about ? – gbackmania Jul 30 '10 at 18:07
-
No I want to understand your question, so any additionnal information is welcome. – Jul 30 '10 at 18:13
-
Here is some information - http://www.jedi.be/blog/2010/02/12/what-is-this-devops-thing-anyway/ . I was wondering how would a developer's sprint look like once the application has gone live. Would he work with SysAdmins everyday to collect the metrics and try to remove bottlenecks and optimize the code ? – gbackmania Jul 30 '10 at 18:50
-
Kris Buytaert & Stephen Nelson-Smith discussing DevOps: Kris: http://youtu.be/BkbMBEFxyx8 Stephen: http://youtu.be/G5LVjzLY1_Q You can also find talks given by Kris on youtube. – Dec 05 '12 at 15:09
1 Answers
One aspect of DevOps that is most relevant to developers is about automation, specifically infrastructure as code. The DevOps utopia is having push-button deployments that will automatically create new boxes, install all dependencies, upload the app, and set all the appropriate configuration values. As with Test Driven Development in application development, there is a push with DevOps to provide testable deployments and write tests to actually test that the software has been deployed and is working correctly.
DevOps is also tending to a production application after it's deployed. This is done by making sure that an app is tooled for monitoring and error notification. More than just that service is up an running, but is the service running well.
The other side of DevOps is around business processes and being more involved with infrastructure and operations and removing those silos between operations, infrastructure, and development. This affects developers because it eliminates the "Works on my Machine" or in a dev environment as a definition of done. Done becomes that the app is in production and working as described in a user story or specification. Developers become more aware of the app in a production environment and more aware of the infrastructure.
It is still unclear where the boundaries of DevOps exist, but the goal of DevOps from a developer perspective is automation of the infrastructure from deployments to configuration and as such to treat the infrastructure as code in regards to checking into source control, testability, and automation as wells as tooling apps for monitoring and notification.
Resources
Software

- 1
- 1

- 2,251
- 18
- 20