Skip to content
@gitops-ci-cd

GitOps CI/CD

Reference implementations for GitOps focused Continuous Integration & Deployment

GitOps CI/CD Pipeline Overview

This organization provides reference implementations for applications that are Continuously Integrated and Deployed using a GitOps-based approach via Argo CD and GitHub Actions, leveraging separate repositories for application code, infrastructure configuration, and deployment logic.

Repositories Structure

Development Workflow

  1. Feature Development and Pull Requests

    • Developers work in feature branches within the app repository.
    • When a pull request (PR) is opened, a GitHub Action initiates linting and unit testing.
  2. Automatic Preview Deployments

    • The Argo CD PR Generator detects PRs labeled with preview Spin up a transient environment to test a pull request and generates a transient environment for the branch.
    • The PR-specific environment allows for isolated testing and review on dedicated subdomains.
    • Upon successful deployment, Argo's Notification tooling sends deployment status updates to GitHub, notifying the PR's deployment with statuses in_progress, success, failure, or error for real-time feedback on the preview environment.
    • The preview deployment is torn down upon removing the aforementioned label or closing the PR.

    Requests made via the subdomains matching the PR are routed to the preview environment, allowing for easy access to the Preview deployment.

    flowchart LR
        url_foo[foo.sandbox.acme.inc]:::foo
        url_bar[bar.sandbox.acme.inc]:::bar
        url_sandbox[sandbox.acme.inc]
    
        url_sandbox --> a
    
        subgraph main[Sandbox Env]
            a[Service A
                main]
            b[Service B
                main]
            c[Service C
                main]
            d[Service D
                main]
    
            a --> b --> c --> d
        end
    
        url_foo -.-> a_foo
    
        subgraph foo[Preview Env]
            a_foo[Service A
                foo]:::foo
            c_foo[Service C
                foo]:::foo
    
            a_foo -.-> b -.-> c_foo -.-> d
        end
    
        url_bar -.-> a
    
        subgraph bar[Preview Env]
            b_bar[Serice B
                bar]:::bar
    
            a -.-> b_bar -.-> c -.-> d
        end
    
        classDef foo stroke:red;
        classDef bar stroke:blue;
    
        linkStyle 0,1,2,3 stroke-width:4px;
        linkStyle 4,5,6,7 stroke-width:2px,stroke:red;
        linkStyle 8,9,10,11 stroke-width:2px,stroke:blue;
    
    Loading

This flowchart provides some insight into the pipeline of events that trigger CI and CD. The numbers represent the order that deployments happen.

flowchart TD
    registry[GitHub Container Registry]

    subgraph env[Preview Environment]
        argo[Argo CD]
        argo-app[Argo ApplicationSet]
    end

    subgraph dev[Development Workflow]
        app[App Repo]
        app-deployment[Deployment Repo]
        deployment[GitHub Deployment]
        deployment-status[GitHub Deployment Status]
        build[Docker Image]
        pr[Pull Request]
        integration[Integration]

        app -- pull_request --> pr
        pr -- synchronize --> integration
        pr -- labeled --> deployment
        pr -- 1 --> argo-app
        deployment --> build
        deployment --> deployment-status
        build --> registry

        env
        argo-app -- 2 --o app-deployment
        argo -- 3 --> deployment-status
    end
Loading

Concretely, that looks like this within the integration.yaml GitHub Action.

flowchart LR
    lint[Integrate / Linter]
    test[Integrate / Tests]
    preview[Deploy / preview]
    build[Build / Image]

    lint & test --> preview --> build
Loading

Production Workflow

  1. New Image Detection

    • The new image tagged in the release is automatically detected by Argo CD Image Updater.
    • Argo CD Image Updater submits a PR to the [app]-deployment repository with the updated image tag. This PR can be set for manual approval or configured for auto-merge, depending on team practices.
  2. Deployment to Production

This flowchart provides some insight into the pipeline of events that trigger CI and CD. The numbers represent the order that deployments happen.

flowchart TD
    registry[GitHub Container Registry]

    subgraph production[Production Environment]
        argo[Argo CD]
        argo-image-updater[Argo CD Image Updater]
        argo-app[Argo Application]
    end

    subgraph prod[Production Workflow]
        app[App Repo]
        app-deployment[Deployment Repo]
        deployment[GitHub Deployment]
        deployment-status[GitHub Deployment Status]
        build[Docker Image]
        tag[Tag/Release]
        pr[Pull Request]
        integration[Integration]

        app -- push --> deployment
        deployment --> build
        deployment --> deployment-status
        build --> tag
        build --> registry
        
        production
        argo-image-updater -- 1 --o registry
        argo-image-updater -- 2 --> app-deployment
        app-deployment -- pull_request --> pr
        pr -- synchronize --> integration
        pr --> app-deployment
        argo-app -- 3 --o app-deployment
        argo -- 4 --> deployment-status
    end
Loading

Concretely, that looks like this within the deployment.yaml GitHub Action.

flowchart LR
    production[Deploy / production]
    sandbox[Deploy / sandbox]
    build[Build / Image]
    release[Release / acme-node]

    production & sandbox --> build --> release
Loading

Summary

These pipelines leverage GitOps principles (via GitHub) and automated deployments (via Argo CD) to ensure a streamlined, consistent deployment process:

  • Preview environments for each PR with isolated, PR-specific deployments.
  • Automated versioning and tagging upon merging to main, ensuring each production release is traceable.
  • Argo CD Image Updater PRs to enforce review controls for production changes or enable auto-rollouts.
  • GitHub Deployment Statuses reflect the deployment’s lifecycle, from feature development through production deployment, providing continuous feedback and visibility.

The repositories herein combine GitOps with automated CI/CD workflows, providing both flexibility and control over each stage of deployment, while ensuring the system remains consistent and reliable. This approach allows for rapid development and deployment cycles, while maintaining a high level of quality and consistency across the organization.

Pinned Loading

  1. argo-config argo-config Public

    Installation and configuration of Argo CD

    Ruby 3

  2. acme-node acme-node Public

    Reference Application

    JavaScript 1

  3. gateway-api-addon gateway-api-addon Public

    Kubernetes Addon

    1

  4. acme-node-deployment acme-node-deployment Public

    Reference Deployment

    1

  5. acme-infra acme-infra Public

    Reference Infrastructure

    1

  6. .github .github Public

    Forked from dudo/.github

    Allows various built in functionality within GitHub

    2

Repositories

Showing 10 of 22 repositories
  • gitops-ci-cd/terraform-modules’s past year of commit activity
    HCL 0 0 0 0 Updated Nov 22, 2024
  • .github Public Forked from dudo/.github

    Allows various built in functionality within GitHub

    gitops-ci-cd/.github’s past year of commit activity
    2 MIT 1 0 0 Updated Nov 20, 2024
  • acme-node Public

    Reference Application

    gitops-ci-cd/acme-node’s past year of commit activity
    JavaScript 1 MIT 0 0 0 Updated Nov 20, 2024
  • argo-config Public

    Installation and configuration of Argo CD

    gitops-ci-cd/argo-config’s past year of commit activity
    Ruby 3 MIT 0 0 0 Updated Nov 19, 2024
  • acme-node-deployment Public

    Reference Deployment

    gitops-ci-cd/acme-node-deployment’s past year of commit activity
    1 MIT 0 0 0 Updated Nov 17, 2024
  • acme-infra Public

    Reference Infrastructure

    gitops-ci-cd/acme-infra’s past year of commit activity
    1 MIT 0 0 0 Updated Nov 17, 2024
  • gitops-ci-cd/networking-addon’s past year of commit activity
    0 0 0 0 Updated Nov 17, 2024
  • storage-addon Public

    Kubernetes Addon

    gitops-ci-cd/storage-addon’s past year of commit activity
    1 0 0 0 Updated Nov 17, 2024
  • gitops-ci-cd/blue-deployment’s past year of commit activity
    1 0 0 0 Updated Nov 17, 2024
  • gitops-ci-cd/red-deployment’s past year of commit activity
    1 0 0 0 Updated Nov 17, 2024

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Most used topics

Loading…