Building CI/CD Pipelines for Monorepo on Kubernetes

Building CI/CD Pipelines for Monorepo on Kubernetes

Prasad Ghangal
Prasad Ghangal

To do or not to do CI/CD for Monorepo is the big question! It started with Matt Klein’s post against Monorepos to which Adam Jacob’s post has an excellent counterpoint. There is also the post specifically focusing around the scalability issue of Monorepos. We will not debate more on the same topic as it has been covered in depth, instead, we will focus on building a CI/CD pipeline for Kubernetes if you are using monorepos in your organization.

In this post, we will talk about building a CI/CD pipeline if you are using a Monorepo structure and want to deploy your services on a Kubernetes cluster. The folks at Shippable have written a very good article on CI/CD for microservices using Monorepos specifically targeted at deploying to ECS. In this example, we will use Helm to deploy services from monorepo to a Kubernetes cluster. Basic familiarity with Kubernetes and Helm will be helpful to follow along with the tutorial, but is not absolutely necessary for understanding the overall tutorial.

Code structure & Continuous Integration (CI) for Monorepo

We will use two distinct microservices – the API and www which are housed in a monorepo. The code is forked from Shippable example mentioned earlier and can be found in this Github app-mono repo. The API is a backend application and www is the front end of the application. Each service has its own Dockerfile which is used to build the image for respective service. Apart from that, a few key points about the repo are:

  • The original repo had a script called “detect-changed-services.sh” which was used to detect which service changed and trigger actions related only to that microservice. We would use similar logic in a Jenkinsfile here to detect which microservice changed.
  • The Jenkins job gets triggered on a simple git commit and builds docker image only for the service that changed.

jenkins
jobs As soon as the CI job finishes pushing the image to Docker registry the webhook is called. This webhook invokes a job which updates the values file in the helm chart repo with the latest tag from docker image. We will talk about the structure of Helm chart shortly but the Jenkins job which orchestrates the change in values.yaml file when a Docker image is pushed is in this Github app-mono-orchestrator repo (Jenkinsfile)

On a seperate yet similar note, sometimes you have to pass parameters to the code being executed when you trigger the Jenkins job. If you have to render the parameters dynamically, you can do it using the Active Choices parameter plugin.

Helm chart structure

Taking inspiration from the organization of the source code, we store the helm charts and configuration information in a monorepo fashion. There are two monorepos:

1) Monorepo which stores the Helm charts for all applications for the monorepo of application source code

├── README.md
└── charts
    ├── app-mono-api
    │   ├── Chart.yaml
    │   └── templates
    │       ├── _helpers.tpl
    │       ├── deployment.yaml
    │       └── service.yaml
    └── app-mono-www
        ├── Chart.yaml
        └── templates
            ├── _helpers.tpl
            ├── deployment.yaml
            └── service.yaml

2) Monorepo which stores the Helm state or value files for all applications for the monorepo of application source code

├── Jenkinsfile
├── README.md
├── app-mono-api
│   └── values.yaml
└── app-mono-www
    └── values.yaml

So as an engineering team, there are three monorepos now for a set of applications:

  1. Application source code monorepo
  2. Helm chart source monorepo
  3. Configuration change monorepo (Values.yaml is basically configuration for each chart)

Continuous deployment (CD) for Monorepo

The change in application source monorepo will trigger a container image build job while change in any of last 2 repos (Helm charts and Helm state) will trigger a deployment job. The ease of managing one repository over multiple repositories is achieved while maintaining a source controlled and simple structure.

upgrade helm chart

Github app-mono-helmstate

Setup instructions

If you want to set up the above example on your own, you can follow the instructions in the Github repo here. You will need a Kubernetes cluster and access to create webhooks in Github repo and Docker hub to experiment with an end to end pipeline.

Conclusion

Monorepo may or may not work for your team based on your needs, but if you are using a monorepo then having a proper CI/CD pipeline is crucial. In this post we explored one opinionated way of deploying applications in monorepo to Kubernetes. Monorepo for applications as well as Helm charts and values file makes it easy to manage the repository sprawl, while still maintaining the flexibility of deploying individual services.

Hope you enjoyed and found this post informational. Do try building CI/CD pipeline on monorepo and share your experience with me on Twitter or LinkedIn

Looking for help with CI/CD implementation? learn more about our capabilities and why startups & enterprises consider as one of the best CI/CD consulting services companies.

Infracloud logo
Implementing your CI/CD strategy? We can help
Learn More

Posts You Might Like

This website uses cookies to offer you a better browsing experience