Introducing Autopilot, an AI coding assistant
gradient
CI/CD pipelines with Kubernetes

CI/CD pipelines with Kubernetes

Jul 20, 2021
7 min read

With enterprises moving toward faster and more reliable software, continuous Integration and delivery (CI/CD) has become a norm to ensure product quality.

Many organizations running Kubernetes in production try to incorporate CI/CD workflows to ship their software effectively but don’t understand that integrating CI/CD into their development workflows is just one part of the equation.

To fully leverage CI/CD workflows, organizations must understand which tools best suit their needs. However, with so many options out there, choosing the right one, or right combination, can be tricky. Here’s a guide for you that will not only provide information about the best Kubernetes CI/CD tools but also the challenges and best practices of CI/CD.

What is CI/CD?

CI/CD is a set of code deployment practices designed to help teams integrate software changes quickly and reliably into production. A CI/CD pipeline implements automated build and test suites to improve agility and expose software issues early in the development process.

While CI/CD is the combined practice of continuous integration and continuous delivery/deployment, they are two different processes that collectively promote software development and integration.

A continuous integration workflow integrates the code changes as often as possible via the process of build automation. Every code change in the software application is automatically built into an image and spun up as a container. This saves a lot of time from manually building and packaging images every time a new code change is committed.

Once the code is integrated and packaged, a continuous delivery workflow comes into play. The goal of CD is to securely deliver the integrated code changes into production by running automated tests. The tests check the validity of the build by traversing it across several stages. If the build passes all the stages, it is ready to be deployed to the Kubernetes cluster automatically or manually, depending upon the method of an organization.

Kubernetes CI/CD pipeline example

Deploying a typical CI/CD pipeline to the Kubernetes cluster requires various components.

Kubernetes CI/CD Pipeline
  • Version Control System – A code repository where code changes and updates are pushed from multiple developers. A CI/CD tool is usually triggered when developers push code changes to the version control system. Popular examples of version control systems are Git.
  • CI/CD Tool – An integration and test system that builds the docker image and runs a series of tests. It also pushes the built image to the Kubernetes cluster. Popular examples are Jenkins, Travis, or CircleCI.
  • Kubernetes Cluster – Kubernetes deploy docker containers for the software build verified by the CI/CD tool.
  • Docker – Docker containerizes the software application for seamless encapsulation and integration.

Kubernetes ci/cd best practices

Though a Kubernetes CI/CD pipeline simplifies deployment, monitoring, and management for microservices, implementing good CI/CD pipeline practices is key to establish a full proof security posture before they are used in production.

Here are some best practices that organizations can consider to build a CI/CD pipeline securely.

Keep secrets secure

Secrets in Kubernetes are digital credentials that provide authentication and authorization for various CI/CD applications and services on the Kubernetes cluster. They can be exposed through a source control system like GitHub during a CI/CD pipeline deployment. So, it is always considered a best practice to keep secrets encrypted and outside of the container for maximum security and reliability.

Implement git-based workflows (gitops)

Triggering CI/CD pipelines by Git-based operations have multiple benefits in terms of collaboration and usability. All the pipeline changes and source code are stored at a unified source repository, allowing developers to review changes and eliminate errors before they are deployed.

Also, support for build snapshots and integration of chat tools (eg, Slack) provides help in tracking and recovering changes when there are failures.

Leverage blue-green deployment patterns

CI/CD pipelines often deploy code in production when it passes requirements for certain stages. In most situations, CI/CD methodologies are properly followed, and deployment is properly done in production, but there can be instances (security flaw, resource outage) that may lead to improper working of the production instance.

So it is always a best practice to implement a blue-green deployment pattern that initializes an additional parallel set of deployment instances to your existing production instances for easier switching in case of failures and downtimes.

Test and scan container images

Testing and scanning a container image every time a new image is built is one of the most useful CI practices that organizations can adopt to detect vulnerabilities. Testing the container image ensures proper working of commands in the container and checks them for correct contents and specifications.

Running an image scan can help take care of vulnerabilities that can be introduced through new builds pushed to the container registry.

Things to consider when implementing a CI/CD pipeline

Implementing a CI/CD pipeline and then employing best practices is usually a win-win combination when it comes to productivity, cost-efficiency, and security. However, there are certain factors that can result in flawed integration, testing, and unreliable security footprint.
Let’s examine those potential CI/CD pitfalls and how you can avoid them in production.

Validation

Continuous integration mechanisms can have multiple builds deployed at a particular point in time. To ensure a stable build without any code quality issues, an effective validation methodology, such as white or black box testing, is required to track failure areas. A validation framework will seamlessly integrate code commits, automating the CI system and reducing the overhead for detecting issues.

Rollbacks

Implementing rollback mechanisms is an important aspect to consider when building a successful CI/CD pipeline. They provide options to restore to a previous change/state in case of a disaster or code failure. Typically, rollbacks re-deploy older releases to safeguard the Kubernetes cluster in the production.

Automated testing

In a continuous delivery (CD) pipeline, automated testing plays a crucial role in streamlining the software delivery lifecycle. Without an automated workflow, randomized unplanned testing can give rise to inefficient builds affecting the code readability and maintainability in production.

Kubernetes CI/CD tools

There are many CI/CD tools available in the market. For the purposes of this article, we will discuss the ones specifically suited for Kubernetes.

Jenkins

Developed by Sun Microsystems, Jenkins is the most stable and widely adopted CI/CD platform globally. Jenkins uses a centralized automation server that takes care of all the CI/CD processes. With support for Windows, macOS, Unix platforms, and various plugins, Jenkins can be easily used to automate the building and deploying of software projects.

To use Jenkins with Kubernetes, it is recommended to use Jenkins X, which is a tailored version of Jenkins specifically for the Kubernetes and Docker workflows.

Gitlab

Gitlab is a complete DevOps suite that manages different aspects of the software development lifecycle through tracking, analytics, CI/CD, and a web-based repository manager. The CI/CD component of Gitlab allows seamless test automation, triggering of builds, and deploying of code into production for each code commit.

Gitlab is available in three editions:

  • Free
  • Premium
  • Ultimate Edition

All editions can be used as a hosted or self-managed service to provide a complete CI/CD tool, but the premium and ultimate plans have some extra features, including support for PostgreSQL, disaster recovery, and increased pipeline execution time.

Argo cd

Argo cd is an open-source CD tool specifically tailored for Kubernetes workflows. Currently an incubating project at the Cloud Native Computing Foundation (CNCF), Argo cd used GitHub as a source of truth for storing Kubernetes applications states and managing Kubernetes configuration.

Argo cd Git-based approach provides a more flexible CD environment by using branching, tagging through a git commit, and implements a Kubernetes controller for proactively monitoring apps and resyncing cluster states.

Comparison Table Jenkins Gitlab Argo cd Ease of use and setup Medium Easy Easy Hosting On premise and cloud On premise and cloud On premise and cloud Open source Yes No Yes Supported platforms Windows, Linux, macOS, Unix Linux and Mac Linux and Mac

Managed vs. on-premise CI/CD

CI/CD systems generally fall into two categories:

  • managed CI/CD services through a provider
  • on-premise services that organizations manage themselves

Both solutions have their capabilities, and the best solution for an organization will be highly dependent on the organization’s needs. Let’s compare both solutions in terms of ease of use and setup.

Getting started with managed CI/CD services is easier and quicker than on-premise solutions as teams don’t have to go through initial infrastructure setup and only have to understand the working of a managed platform. Managed service providers will do the initial setup process, including the installation of servers, dependencies, and pipelines.

With on-premise CI/CD options, you have more control and flexibility over your infrastructure. For example, in an on-premise environment, it’s much easier to spin up a Kubernetes environment with different types of resource configurations than hosted CI/CD options, which only provide the option to choose a build machine with a particular amount of vCPU, RAM, and disk space.

Hybrid CI/CD

There are subtle differences between managed and self-hosted CI/CD services, as discussed above, but there are also some hybrid approaches that organizations can implement to bridge the gap between self-hosted and cloud-managed services.

Many CI/CD managed service providers such as Gitlab and Bamboo offer their managed service platform as an on-premise version which organizations can use to manage CI/CD processes while using their own infrastructure. This avoids interference from an external service provider and helps the organizations maintain their strict security requirements.

Conclusion

Implementing a CI/CD pipeline with Kubernetes automation capabilities has many benefits. Developers can easily patch updates, solve outage issues in case of an unforeseen traffic spike, and improve resource efficiency.

With Kubernetes becoming more popular day by day, all the mature CI/CD tool vendors are developing new features to integrate with Kubernetes. When looking for a Kubernetes CI/CD pipeline tool, it is essential to determine factors such as deployment type (on-premises or cloud-based options), ease of use, and support for different operating systems.

When it comes to ease of use and implementing a single DevOps platform, managed CI/CD tools like Gitlab and Bamboo provide more value. Open source projects such as Jenkins are your best bet if you require advanced integration and support for different platforms.

If you're looking for a powerful internal tooling platform that makes managing CI/CD pipelines easier, check out Airplane. Airplane is the developer platform for building internal tools. With Airplane, you can transform scripts, queries, APIs, and more into powerful internal workflows and UIs. Airplane is a code first platform: every workflow and UI you build in it can be version controlled and integrated into your existing codebase.

To build your first internal workflow or UI, sign up for a free account or book a demo.

Share this article:
Harshit Mehndiratta
Harshit Mehndiratta is a Software Developer at 5Data. In addition, he is a technical author who enjoys writing about his experiences using Kubernetes as well as JavaScript and React JS.

Subscribe to new blog posts from Airplane.