๐Ÿ“Œ Part 5 Kubernetes CI/CD Automation: Best Practices with Jenkins, GitLab, AWS, and Azure

Vikas SurveVikas Surve
4 min read

1๏ธโƒฃ Overview

CI/CD (Continuous Integration & Continuous Deployment) automates the build, test, and deployment process, ensuring rapid and reliable delivery of Kubernetes applications.

๐Ÿ”น Why CI/CD for Kubernetes?

โœ… Automates application deployment โ†’ Reduces manual effort
โœ… Ensures consistency โ†’ Deploy the same way across different environments
โœ… Supports multi-cloud โ†’ AWS, Azure, and on-premise clusters


๐Ÿ“Œ Table of Contents

1๏ธโƒฃ Jenkins Pipeline for Kubernetes CI/CD
2๏ธโƒฃ GitLab CI/CD for Kubernetes
3๏ธโƒฃ AWS CodePipeline for Kubernetes Deployments
4๏ธโƒฃ Azure DevOps Pipeline for Kubernetes Deployments
5๏ธโƒฃ Best Practices & Troubleshooting


1๏ธโƒฃ Jenkins Pipeline for Kubernetes CI/CD

๐Ÿ”น Step 1: Install & Configure Jenkins

1.1 Launch an EC2 Instance for Jenkins

  • Instance Type: t2.medium (4GB RAM)

  • Security Group: Allow ports 8080 (Jenkins), 22 (SSH)

1.2 Install Jenkins on EC2

sudo apt update -y
sudo apt install openjdk-11-jdk -y
wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo apt update -y
sudo apt install jenkins -y
sudo systemctl enable jenkins
sudo systemctl start jenkins

โœ… Verify Jenkins is running:

sudo systemctl status jenkins

๐Ÿ”น Step 2: Configure Jenkins Pipeline for Kubernetes Deployment

๐Ÿ“Œ Create a Jenkinsfile in your GitLab/GitHub repository:

pipeline {
    agent any
    environment {
        KUBECONFIG = credentials('k8s-config') // Load Kubernetes config
    }
    stages {
        stage('Checkout Code') {
            steps {
                git branch: 'main', url: 'https://gitlab.com/your-repo/easyshop.git'
            }
        }
        stage('Build & Push Docker Image') {
            steps {
                sh 'docker build -t easyshop:latest .'
                sh 'docker push <your-dockerhub-username>/easyshop:latest'
            }
        }
        stage('Deploy to Kubernetes') {
            steps {
                sh 'kubectl apply -f kubernetes/deployment.yaml'
                sh 'kubectl apply -f kubernetes/service.yaml'
            }
        }
    }
}

โœ… Run the Jenkins Pipeline to automate Kubernetes deployments!


2๏ธโƒฃ GitLab CI/CD for Kubernetes

๐Ÿ”น Step 1: Register a GitLab Runner on an EC2 Instance

sudo apt install -y gitlab-runner
gitlab-runner register --url https://gitlab.com/ --registration-token <your-token>

๐Ÿ“Œ Select:

Executor: docker
Image: ubuntu:latest

โœ… Verify Runner Status:

gitlab-runner verify

๐Ÿ”น Step 2: Define GitLab CI/CD Pipeline

๐Ÿ“Œ Create .gitlab-ci.yml in your repository:

stages:
  - build
  - deploy

build:
  stage: build
  script:
    - docker build -t <your-dockerhub-username>/easyshop:latest .
    - docker push <your-dockerhub-username>/easyshop:latest

deploy:
  stage: deploy
  script:
    - kubectl apply -f kubernetes/deployment.yaml
    - kubectl apply -f kubernetes/service.yaml

โœ… Commit & Push to trigger GitLab CI/CD pipeline!


3๏ธโƒฃ AWS CodePipeline for Kubernetes Deployments

๐Ÿ”น Step 1: Create an AWS EKS Cluster

eksctl create cluster --name easyshop-cluster --region us-east-1

โœ… Verify Cluster:

aws eks list-clusters

๐Ÿ”น Step 2: Create an AWS CodePipeline

๐Ÿ“Œ Define CodePipeline configuration in codepipeline.yaml:

Resources:
  CodePipeline:
    Type: AWS::CodePipeline::Pipeline
    Properties:
      Name: easyshop-codepipeline
      RoleArn: arn:aws:iam::123456789012:role/CodePipelineRole
      Stages:
        - Name: Source
          Actions:
            - Name: GitSource
              ActionTypeId:
                Category: Source
                Owner: AWS
                Provider: CodeCommit
                Version: 1
              Configuration:
                RepositoryName: easyshop
                BranchName: main
        - Name: Deploy
          Actions:
            - Name: DeployToEKS
              ActionTypeId:
                Category: Deploy
                Owner: AWS
                Provider: CodeBuild
                Version: 1
              Configuration:
                ProjectName: easyshop-k8s-deployment

โœ… Deploy CodePipeline:

aws cloudformation create-stack --stack-name easyshop-ci-cd --template-body file://codepipeline.yaml --capabilities CAPABILITY_NAMED_IAM

4๏ธโƒฃ Azure DevOps Pipeline for Kubernetes Deployments

๐Ÿ”น Step 1: Create an Azure AKS Cluster

az aks create --resource-group EasyShopRG --name easyshop-aks --node-count 2 --enable-addons monitoring --generate-ssh-keys

โœ… Get AKS Credentials:

az aks get-credentials --resource-group EasyShopRG --name easyshop-aks

๐Ÿ”น Step 2: Create an Azure DevOps Pipeline

๐Ÿ“Œ Define .azure-pipelines.yml in your repository:

trigger:
  branches:
    include:
      - main

stages:
- stage: Build
  jobs:
  - job: Build
    steps:
    - task: Docker@2
      inputs:
        command: build
        repository: 'easyshop'
        Dockerfile: 'Dockerfile'
        tags: latest
    - task: Docker@2
      inputs:
        command: push
        repository: 'easyshop'
        tags: latest

- stage: Deploy
  jobs:
  - job: Deploy
    steps:
    - task: KubernetesManifest@0
      inputs:
        action: deploy
        namespace: 'default'
        manifests: |
          kubernetes/deployment.yaml
          kubernetes/service.yaml

โœ… Commit & Push to trigger Azure DevOps pipeline!


5๏ธโƒฃ Multi-Cloud CI/CD Best Practices & Troubleshooting

๐Ÿ”น Best Practices

โœ… Use GitHub/GitLab webhooks to trigger Jenkins builds
โœ… Store Kubernetes credentials securely in CI/CD tools
โœ… Implement Rolling Deployments in Kubernetes


๐Ÿ”น Common Issues & Fixes

๐Ÿ“Œ AWS CodePipeline Deployment Fails?
โœ”๏ธ Ensure Kubernetes credentials are loaded:

aws eks update-kubeconfig --name easyshop-cluster

๐Ÿ“Œ Azure DevOps Pipeline Not Deploying?
โœ”๏ธ Check pipeline logs in Azure DevOps:

az pipelines runs list

๐ŸŽฏ Conclusion

๐Ÿš€ Multi-Cloud CI/CD Automation is now fully implemented!
โœ… Jenkins & GitLab deploy applications automatically
โœ… AWS CodePipeline deploys workloads to EKS
โœ… Azure DevOps Pipelines deploy to AKS
โœ… Full Kubernetes deployment automation with zero manual intervention! ๐ŸŽ‰

This completes the end-to-end Kubernetes CI/CD automation setup! ๐Ÿš€

0
Subscribe to my newsletter

Read articles from Vikas Surve directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Vikas Surve
Vikas Surve