Chapter 3: Basics of Continuous Delivery
- What we mean by delivering software is that the actual software product has been delivered to the intended user and not just that the software product has been approved by the QA department. In other words the intended users are actually using the software.
- Deploying software manually is an antipattern as well as manual software configuration.
- Some benefits of automation when delivering software is team empowerment ( teams feel empowered to make decisions ), error reduction as you eliminate errors that creep up due to manual processes as well as stress reduction.
- Configuration Management is the process by which all software artifacts that are pertinent to each given project as well as any relationships among the software artifacts are retrieved, stored, identified and modified.
- Writing descriptive and meaningful commit messages helps developers quickly track the issue that is worked on and helps developers understand the work that you actually did.
- A deployment pipeline can thought of as the process for getting software that is written by developers into the hands of your users.
- The deployment should be done the same in each environment so that you get reliably know that it is being tested the same in each environment and avoid possible configuration mismatches.