Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStatsPractice TestsCertifications

Categories

🎓 Certifications
🤖 Artificial Intelligence
☁️ Cloud and Infrastructure
💾 Data and Databases
💼 Professional Skills
🎯 Programming and Development
🔒 Security and Networking
📚 Specialized Topics
CheatGrid
HomeAboutTopicsPricingMy VaultStatsPractice TestsCertifications
LVLEVEL 0
0/5 XP
GitHub
© 2026 CheatGrid™. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Managed Kubernetes Platforms Cheat Sheet

Managed Kubernetes Platforms Cheat Sheet

Back to Cloud Computing
Updated 2026-05-25
Next Topic: Microsoft Fabric Cheat Sheet

Managed Kubernetes platforms — Amazon EKS, Azure AKS, and Google GKE — remove the operational burden of running the Kubernetes control plane, letting teams focus on workloads instead of infrastructure. Each cloud provider wraps vanilla Kubernetes with distinct networking models, autoscaling strategies, identity integrations, and fully-managed tiers such as GKE Autopilot, AKS Automatic, and EKS Auto Mode. Kubernetes 1.33 "Octarine" brings in-place pod resizing to GA, while Dynamic Resource Allocation (DRA) — stable in 1.35 — unlocks structured GPU scheduling beyond the legacy nvidia.com/gpu extended-resource model. The Gateway API has graduated to GA and now supersedes Ingress for new clusters, following Ingress-NGINX's retirement in March 2026.

What This Cheat Sheet Covers

This topic spans 16 focused tables and 187 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: Platform Comparison (EKS, AKS, GKE)Table 2: Cluster Architecture ConceptsTable 3: Node Groups and Compute ManagementTable 4: Pod Autoscaling and Resource ManagementTable 5: Networking and CNITable 6: Storage and CSITable 7: Identity and RBACTable 8: Observability and MonitoringTable 9: Security and PolicyTable 10: Deployment StrategiesTable 11: High Availability and Disaster RecoveryTable 12: Cost OptimizationTable 13: Workload Controllers and PatternsTable 14: Service Discovery and IngressTable 15: Upgrades and Version ManagementTable 16: Platform-Specific Features

Table 1: Platform Comparison (EKS, AKS, GKE)

Understanding the pricing model, default CNI, and managed-tier options of each platform before designing a cluster prevents costly surprises. AKS offers a three-tier control-plane pricing model; GKE gives a monthly zonal credit; EKS charges separately for Auto Mode node management.

PlatformExampleDescription
Amazon EKS
eksctl create cluster --name prod --region us-east-1
• Control plane: 0.10/hr** (standard, first 14 months per version)<br>&bull; Extended support: **0.60/hr (months 15–26 after release)
• Workers: separate EC2/Fargate cost; CNI: AWS VPC CNI
Azure AKS
az aks create -g rg -n prod --tier standard
• Free tier: no SLA, ≤10 nodes recommended
• Standard: 0.10/hr, 99.95% SLA<br>&bull; **Premium**: 0.60/hr, 24-month LTS, 99.95% SLA; CNI default: Azure CNI Overlay
Google GKE
gcloud container clusters create prod --region us-central1
• Standard: 0.10/hr per cluster (one **free zonal cluster / 74.40/month credit**)
• Autopilot: pay-per-pod; Dataplane V2 eBPF default for Autopilot
GKE Autopilot
gcloud container clusters create-auto autopilot-prod
• Fully-managed node pools
• GKE handles all node operations
• billed per vCPU/memory/storage of running pods
EKS Fargate
kubectl apply -f fargate-profile.yaml
• Serverless pods — no EC2 nodes
• billed per vCPU and memory per second
• use for burst or compliance workloads

More in Cloud Computing

  • IBM Cloud and watsonx Cheat Sheet
  • Microsoft Fabric Cheat Sheet
  • AI Agent Mesh and Agentic Cloud Infrastructure Cheat Sheet
  • Cloud Auto-Scaling Cheat Sheet
  • Cloud Message Queues and Event-Driven Architecture Cheat Sheet
  • FinOps (Financial Operations for Cloud) Cheat Sheet
View all 57 topics in Cloud Computing