Day 12: Advanced GitOps with Argo Rollouts

Welcome to Day 12 of the Zero to Platform Engineer in 30 Days challenge! 🚀 Today, we’re diving deeper into GitOps by exploring Argo Rollouts, a powerful tool for managing progressive delivery strategies like canary and blue-green deployments.

By the end of this session, you’ll understand:

  • What GitOps is and why it’s transformative for managing Kubernetes.
  • How to use ArgoCD to implement GitOps.
  • Hands-on steps to set up and deploy applications with ArgoCD.

What Are Argo Rollouts?

Argo Rollouts is a Kubernetes controller that extends the functionality of Deployments by providing advanced deployment strategies such as:

  • Canary Deployments: Gradually shift traffic to a new version while monitoring its behavior.
  • Blue-Green Deployments: Keep two versions (blue and green) and switch traffic seamlessly.
  • Progressive Delivery: Safely deliver updates while minimizing risks.

Why Use Argo Rollouts?

Argo Rollouts integrates seamlessly with GitOps workflows, making it a powerful choice for:

  • Automated deployments with minimal downtime.
  • Real-time traffic control and monitoring.
  • Enhanced rollback capabilities.

🎯 Real-World Use Case: Argo Rollouts is ideal for applications requiring high availability, such as APIs or user-facing services.

Hands-On: Setting Up Argo Rollouts

Step 1: Install Argo Rollouts

  1. Add the Argo Rollouts controller to your cluster:
kubectl create namespace argo-rollouts
kubectl apply -n argo-rollouts -f https://github.com/argoproj/argo-rollouts/releases/latest/download/install.yaml
  1. Verify that Argo Rollouts is installed:
kubectl get pods -n argo-rollouts

Step 2: Create a Canary Deployment

  1. Define a sample Rollout with a canary strategy:
apiVersion: argoproj.io/v1alpha1
kind: Rollout
metadata:
  name: canary-example
  namespace: default
spec:
  replicas: 3
  selector:
    matchLabels:
      app: canary-example
  template:
    metadata:
      labels:
        app: canary-example
    spec:
      containers:
      - name: app
        image: nginx:1.21
        ports:
        - containerPort: 80
  strategy:
    canary:
      steps:
      - setWeight: 25
      - pause: { duration: 30s }
      - setWeight: 50
      - pause: { duration: 30s }
      - setWeight: 100
  1. Apply the Rollout:
kubectl apply -f canary-rollout.yaml
  1. Monitor the progress of the Rollout:
kubectl argo rollouts get rollout canary-example --watch

Step 3: Create a Blue-Green Deployment

  1. Define a Rollout with a blue-green strategy:
apiVersion: argoproj.io/v1alpha1
kind: Rollout
metadata:
  name: blue-green-example
  namespace: default
spec:
  replicas: 3
  selector:
    matchLabels:
      app: blue-green-example
  template:
    metadata:
      labels:
        app: blue-green-example
    spec:
      containers:
      - name: app
        image: nginx:1.21
        ports:
        - containerPort: 80
  strategy:
    blueGreen:
      activeService: active-svc
      previewService: preview-svc
      autoPromotionEnabled: false
  1. Apply the Rollout:
kubectl apply -f blue-green-rollout.yaml
  1. View the active and preview services:
kubectl get svc -l app=blue-green-example

Step 4: Rollbacks and Promotions

  1. To promote a preview version in a blue-green strategy:
kubectl argo rollouts promote blue-green-example
  1. To roll back a canary deployment:
kubectl argo rollouts rollback canary-example

Activity for Today

  1. Set up Argo Rollouts in your Kubernetes cluster.
  2. Create and test a canary deployment.
  3. Implement a blue-green deployment and practice rolling back and promoting versions.

What’s Next?

Now that you’ve mastered advanced GitOps workflows, tomorrow we’ll explore monitoring and observability with tools like Prometheus and Grafana.

Get ready to level up your platform engineering skills! 🚀

👉 Check it out here: Zero to Platform Engineer Repository

Feel free to clone the repo, experiment with the code, and even contribute if you’d like! 🚀

Follow the Series!

🎉 Don’t miss a single step in your journey to becoming a Platform Engineer! 🎉

This post is just the beginning. Here’s what we’ve covered so far and what’s coming up next:

👉 Bookmark this blog and check back every day for new posts in the series. 📣 Share your progress on social media with the hashtag #ZeroToPlatformEngineer to connect with other readers!

Subscribe to Alex Parra Newsletter

One update per month. No spam.