Using Chaos Studio with AKS

Azure Chaos Studio is a managed chaos engineering service that allows you to introduce controlled faults into your Azure environment to validate resilience and robustness. In this post, you’ll learn how to use Chaos Studio to run experiments on Azure Kubernetes Service (AKS) clusters. Prerequisites An existing AKS cluster Azure CLI installed and logged in kubectl configured AKS cluster must be running in a supported region Chaos Studio enabled in your subscription Register Required Resource Providers az provider register --namespace Microsoft.Chaos az provider register --namespace Microsoft.ContainerService Enable Chaos Studio on Your AKS Cluster az chaos target create --resource-id $(az aks show -g <resource-group> -n <aks-name> --query id -o tsv) \ --target-type Microsoft-AzureKubernetesServiceCluster \ --location <region> You can also enable Chaos Studio from the Azure Portal under your AKS resource > Chaos Studio > Enable. ...

February 4, 2025