Skip to content

dirien/gitops-promotion-tools-why-you-need-to-add-them-to-your-gitops-toolkit-in-2025

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitOps Promotion Tools: Why You Need to Add Them to Your GitOps Toolkit in 2025!

Demo repository for the talk showcasing GitOps promotion tools and patterns.

About This Repository

This repository contains the demo code, examples, and practical implementations used in the talk "GitOps Promotion Tools: Why You Need to Add Them to Your GitOps Toolkit in 2025!"

Each directory contains working examples and demonstrations of how to implement GitOps promotion workflows using different tools, moving beyond traditional CI/CD approaches to embrace true GitOps principles for environment promotion.

The Problem We're Solving

GitOps agents like Argo CD or Flux excel at maintaining desired state within a single environment, but they don't provide clear patterns for promoting changes between environments. This often leads to:

  • Bloated CI pipelines handling promotion logic
  • Drift from GitOps principles
  • Complex, error-prone promotion processes

This repository demonstrates how GitOps Promotion Tools solve these challenges by bringing promotion back into the GitOps paradigm.

Demo Tools & Examples

This repository includes hands-on demonstrations of three GitOps promotion tools:

Complete setup and demo scenarios showing multi-environment GitOps promotion workflows.

Working examples of Argo CD-native promotion patterns and configurations.

Practical implementations of automated GitOps promotion workflows.

Repository Structure

├── infra/                 # Pulumi infrastructure code for DigitalOcean Kubernetes cluster
├── base-tools/            # Pulumi code for installing base tools using GitOps bridge pattern
├── gitops/                # GitOps configurations and applications
│   ├── base-tools/        # Base tool configurations (ArgoCD, cert-manager, etc.)
│   ├── promote-app/       # Application promotion configurations
│   └── promote-tools/     # GitOps promotion tool configurations
├── app/                   # Sample application (Podtato Head) Helm chart
└── docs/                  # Talk slides and additional documentation

Infrastructure

This repository uses Pulumi for Infrastructure as Code to provision:

  • DigitalOcean Kubernetes Cluster: Complete K8s infrastructure setup
  • Base Tools Installation: Leveraging the GitOps Bridge Pattern to seamlessly connect IaC-provisioned resources with GitOps-managed deployments

GitOps Bridge Pattern

The GitOps Bridge Pattern bridges the gap between Infrastructure as Code (IaC) and GitOps by enabling Kubernetes administrators to:

  • Use IaC tools (Pulumi) for cluster provisioning and cloud resource creation
  • Automatically configure GitOps tools with metadata from IaC-provisioned resources
  • Install and configure base tools (ArgoCD, cert-manager, metrics-server) through GitOps
  • Maintain separation of concerns while ensuring seamless integration

Getting Started with Infrastructure

  1. Provision Infrastructure: Deploy DigitalOcean Kubernetes cluster

    cd infra/
    pulumi up
  2. Install Base Tools: Deploy foundational tools using GitOps bridge

    cd base-tools/
    pulumi up
  3. Access ArgoCD: The GitOps engine will be available for managing applications and promotion workflows

Getting Started

Each tool directory contains:

  • Complete setup instructions
  • Working demo scenarios
  • Configuration examples
  • Step-by-step guides

Start with any tool directory to explore different approaches to GitOps promotion.

Related Tools & Technologies

Contributing

This repository is part of an educational initiative to improve GitOps practices. Contributions, issues, and feature requests are welcome!

License

This project is licensed under the Mozilla Public License Version 2.0 - see the LICENSE file for details.

About

GitOps Promotion Tools: Why You Need to Add Them to Your GitOps Toolkit in 2025!

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks