DevOps
DevOps is the marriage of development and operations. It is well established for development that code repositories like Git track every code change. In operations, there has long been a wide variety of techniques to track changes to environments, including scripts and various tools that aim to automate the provisioning of operating systems and servers.
How often have you heard the saying, “It works on my machine”? Developers often use that line as a joke. Still, it is often the case that software that works perfectly well on a test server ends up running into issues on a production server due to minor differences in configuration.
Earlier, we discussed how GitHub flow can enable us to create a value delivery stream. We always branch from the main branch before making a change, enforce that change to go through our CI pipeline, and, once we’re reasonably sure that our code works, merge back to the main branch. See the following diagram:
...