TechOps Examples
Hey — It's Govardhana MK 👋
Welcome to another technical edition.
Every Tuesday – You’ll receive a free edition with a byte-size use case, remote job opportunities, top news, tools, and articles.
Every Thursday and Saturday – You’ll receive a special edition with a deep dive use case, remote job opportunities, and articles.
Your GitHub stars won't save you if you're behind on tech trends.
Get curated tech news, tools, and insights twice a week
Learn about emerging trends you can leverage at work in just 5 mins a day
Become the engineer who always knows what's next
👀 Remote Jobs
Growe is hiring a System Reliability Engineer/DevOps
Remote Location: Worldwide
Social Discovery Group is hiring a Jira Administrator
Remote Location: Worldwide
Powered by: Jobsurface.com
📚 Resources
Looking to promote your company, product, service, or event to 54,000+ Cloud Native Professionals? Let's work together. Advertise With Us
🧠 DEEP DIVE USE CASE
How Blue and Green Deployments Work in AKS
For someone new to blue green deployments, it means running two identical environments where only one serves users at a time.
Blue is the current live version, and Green is the new version you prepare and test before switching traffic to it.
In Azure Kubernetes Service, blue green is implemented by introducing a second AKS cluster and controlling which cluster receives traffic through the ingress layer exposed via Azure networking components.
You typically have two access patterns:
1. Public Facing Pattern
User → Azure DNS → Azure Front Door → Azure Application Gateway → app endpoints → AKS cluster

In the public facing pattern, Azure Front Door and Azure DNS are used to switch traffic between the Blue and Green clusters.
2. Private Facing Pattern
User → Azure DNS → Azure Application Gateway → app endpoints → AKS cluster

In the private facing pattern, Azure DNS performs the switch between the Blue and Green clusters using A and CNAME records.
In both these use case examples, Azure Application Gateway provides the front end for the cluster endpoints. The blue green change is therefore not happening inside AKS itself. It happens through the Azure routing components placed in front of the clusters.
With this basic understanding, let us look at how blue green deployments work in Azure Kubernetes Service step by step through the architecture diagrams.
🔴 Get my DevOps & Kubernetes ebooks! (free for Premium Club and Personal Tier newsletter subscribers)
Upgrade to Paid to read the rest.
Become a paying subscriber to get access to this post and other subscriber-only content.
UpgradePaid subscriptions get you:
- Access to archive of 250+ use cases
- Deep Dive use case editions (Thursdays and Saturdays)
- Access to Private Discord Community
- Invitations to monthly Zoom calls for use case discussions and industry leaders meetups
- Quarterly 1:1 'Ask Me Anything' power session


