Back
aks persistent storage terraform diagram — PVC, PV, StorageClass, Azure Managed Disk
09Dec, 2025

Persistent Volumes in AKS with Terraform — The Role of Azure Managed Disks

If you’re exploring AKS persistent storage Terraform, one of the first questions you encounter is the same one developers have been asking for years: “Where do we put the data?” Containers are ephemeral. Pods restart. Nodes churn.Yet your application needs logs, caches, indexes, uploads — anything that must survive lifecycle …

aks autoscaler terraform architecture diagram
07Dec, 2025

AKS Autoscaling Node Pools with Terraform/OpenTofu — Turning Static Clusters into Elastic Infrastructure

In the previous article, we built a dedicated user node pool in Azure Kubernetes Service (AKS). In this post, we take the next step and introduce the AKS autoscaler Terraform configuration that transforms a static cluster into an elastic one. That setup is already a huge improvement over running everything …

aks additional node pool terraform architecture diagram
28Nov, 2025

Creating an Additional AKS Node Pool with Terraform/OpenTofu (Step-by-Step)

AKS additional node pool Terraform setups are one of the most practical ways to scale and isolate workloads in Azure Kubernetes Service. In this guide, we’ll create a fully functional user node pool and deploy workloads to it using Terraform/OpenTofu. Azure Kubernetes Service (AKS) becomes dramatically more flexible when you …

aks log analytics terraform diagram
24Nov, 2025

AKS Log Analytics with Terraform — How the FoggyKitchen Module Automates Azure Monitor Integration

AKS Log Analytics Terraform is one of the cleanest ways to enable Azure Monitor and Container Insights for your Kubernetes clusters. In this article, I’ll show how the FoggyKitchen AKS module automatically creates a Log Analytics Workspace and connects it to your cluster without any manual steps. Monitoring is one …

azure container registry terraform diagram
21Nov, 2025

Deploying Container Images to AKS Using Azure Container Registry: Why It Matters

In this guide, you will learn how Azure Container Registry Terraform works with AKS when deploying workloads with Terraform — a crucial workflow for any real-world Kubernetes project. When you start automating workloads on Azure Kubernetes Service (AKS), the first real challenge is not the cluster itself — it’s your …

AKS Kubenet vs Azure CNI
14Nov, 2025

Kubenet vs Azure CNI in AKS – What’s the Difference (with Terraform examples)

Introduction When building Azure Kubernetes Service (AKS) clusters with Terraform or OpenTofu, networking isn’t just configuration — it’s architecture.AKS supports two main network plugins: Kubenet and Azure CNI. Your choice between them determines how pods receive IPs, how traffic is routed, and how your cluster integrates with existing VNets.In this …