Azure · Containers
Azure Kubernetes Service
Managed Kubernetes with Azure-native integrations.
Official docsOverview
AKS provides managed Kubernetes with workload identity, KEDA autoscaling, and Azure CNI networking.
When to use it
- Container platforms for QA services
- Selenium grids at scale
- Service-mesh testing
Setup
- Create cluster: `az aks create -g qa-rg -n qa --node-count 3 --enable-managed-identity`.
- Get creds: `az aks get-credentials -g qa-rg -n qa`.
How to use
One-shot job
kubectl create job nightly --image=acr.azurecr.io/tests:latestQA use cases
- KEDA scales Playwright workers based on Service Bus queue length.
