by Amit Kulkarni | Feb 11, 2018 | DevOps
Infrastructure as code (IaC) is the process of managing and provisioning computer data centers through machine-readable definition files, rather than physical hardware configuration or interactive configuration tools. Both physical equipment such...
by Amit Kulkarni | Feb 2, 2018 | DevOps
One of the important parts of any DevOps process is the regular release of working software. In Scrum, iterations tend to be only one or two weeks long. When you use Kanban you release whenever a reasonable package is ready – often multiple times a week. When you do...
by Amit Kulkarni | Jan 27, 2018 | Agile Scrum, DevOps
In Continuous integrations, all the developer work is merged to main branch several times a day. This helps in reducing integration problems. In Continuous integration we try to minimize the duration for which a branch remains checked out. A developer code gets...
by Amit Kulkarni | Jan 19, 2018 | DevOps
Continuous deployment can be thought of as an extension of Continuous Integration and Continuous Delivery aiming at minimizing lead time, the time elapsed between development writing one new line of code and this new code being used by live users, in production. To...
by Amit Kulkarni | Jan 18, 2018 | Agile Testing
Managing Regression Risk with Evolving Manual and Automated Test Cases In an Agile project, as each iteration completes, the product grows. Therefore, the scope of testing also increases. Along with testing the code changes made in the current iteration, testers also...