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
- 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
- Verify that Argo Rollouts is installed:
kubectl get pods -n argo-rollouts
Step 2: Create a Canary Deployment
- 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
- Apply the Rollout:
kubectl apply -f canary-rollout.yaml
- Monitor the progress of the Rollout:
kubectl argo rollouts get rollout canary-example --watch
Step 3: Create a Blue-Green Deployment
- 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
- Apply the Rollout:
kubectl apply -f blue-green-rollout.yaml
- View the active and preview services:
kubectl get svc -l app=blue-green-example
Step 4: Rollbacks and Promotions
- To promote a preview version in a blue-green strategy:
kubectl argo rollouts promote blue-green-example
- To roll back a canary deployment:
kubectl argo rollouts rollback canary-example
Activity for Today
- Set up Argo Rollouts in your Kubernetes cluster.
- Create and test a canary deployment.
- 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:
- Day 0: Introduction - What’s Platform Engineering?
- Day 1: Introduction to the CNCF Landscape
- Day 2: Day 2: Containers and Docker - The Building Blocks of Cloud Native
- Day 3: Containers and Kubernetes - The Building Blocks of Cloud Native
- Day 4: Deployments and Scaling in Kubernetes - Let’s Get Practical
- Day 5: Kubernetes Services – Connecting Your Applications
- Day 6: ConfigMaps and Secrets – Managing Configurations in Kubernetes
- Day 7: Recap and Hands-On Challenges for Week 1
- Day 8: Introduction to Infrastructure as Code (IaC)
- Day 9: Advanced Terraform – Managing Kubernetes Resources
- Day 10: Managing Kubernetes with Helm and Terraform
- Day 11: Introduction to GitOps with ArgoCD
👉 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!