The DevOps CI/CD Process TLDR;

I find that sometimes folks find it confusing to visualize and understand the DevOps process and to understand the security around it. My intention for this write-up is to make what can be a complex topic to understand, into a simple quick read to help you understand the process.

Diagram of Execution

This is a high level overview of how to visualize the process:

1. Repository (Code)

This is where the source code of your application resides. It could be hosted on Azure Repos, GitHub, or any other supported version control system.

Possible Risks + Attacks

Mitigations

2. Build Pipeline (CI)

The build pipeline is responsible for fetching the code from the repository, compiling it, running tests, and producing an artifact as part of the Continuous Integration (CI). It typically involves:

Possible Risks + Attacks

Mitigations

3. Artifact (Output of Build)

The artifact is the result of the build process. It is a packaged version of the application, ready for deployment. This could be in the form of compiled binaries, container images, or other deployable packages.

4. Release Pipeline (CD)

The release pipeline takes the artifacts produced by the build pipeline and manages the deployment process as part of Continuous Delivery/Deployment (CD). It typically involves:

Possible Risks + Attacks

These are very similar to the ones of the build pipelines, please reference those above. But some additional quirks:

Mitigations

5. Deployment of App/Code

The final product of this process involves deploying the application or code to the target environment, such as a web server, cloud infrastructure, or a set of virtual machines. While the deployment is often handled by the Release pipeline, there are a few things to highlight about this step of the process.

The deployment can include tasks like: