An Azure service that provides a general-purpose, serverless container platform.
Hi Nikolaj,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
Please find the response below and let me know if it works and you have any questions in comments.
Root Cause of the Error
The error you are encountering is due to a known, ongoing capacity restriction in the West Europe region (which has been affecting compute and app services since late February 2026). Azure Container Apps runs on top of Azure Kubernetes Service (AKS) under the hood. The AKSCapacityHeavyUsage error is surfacing because the West Europe region currently lacks the capacity to provision new "Free tier" AKS control planes, which Container Apps attempts to use by default for the managed environment's backend.
Why the Dedicated Workprofile Doesn't Bypass This
Your observation about the Consumption profile is entirely correct. According to the official Azure Container Apps documentation on Compute and billing structures, "Every Workload profiles (v2) environment automatically comes with a consumption profile." Furthermore, the documentation on Managing workload profiles explicitly states: "Note: The Consumption workload profile can't be deleted." Because the ACA architecture mandatorily includes this consumption profile alongside any dedicated profiles you add, the Azure Resource Manager continuously attempts to provision the default underlying infrastructure (the free-tier AKS cluster) during environment creation. Since you cannot delete the consumption profile, there is currently no way to force Azure Container Apps to use a "paid tier" control plane to bypass this specific capacity error.
Recommended Workarounds
Since Microsoft abstracts the AKS control plane tier in Container Apps, you are unfortunately blocked by the region's hardware availability. Here are your best options:
- Deploy to a nearby paired region (Temporary): While you mentioned concerns about latency and bandwidth costs with your SaaS database (Tiger Cloud), deploying the Container App in
northeuropeorfrancecentralis currently the fastest way to get unblocked. You can migrate it back once West Europe capacity frees up. - Try again later: Capacity in West Europe dynamically frees up as resources are shifted or expanded, but Microsoft Support does not provide a guaranteed timeline for when the "Free tier" cluster constraints will be fully lifted.
- Alternative - Native AKS: If remaining in West Europe is an absolute hard requirement and you cannot wait, you might consider deploying a native Azure Kubernetes Service (AKS) cluster instead of Container Apps. With native AKS, you have direct control over the cluster and can explicitly select the Standard or Premium paid tier for the control plane. This will bypass the "Free tier cluster is unavailable" error completely and allow you to deploy your application in West Europe today.