> ## Documentation Index
> Fetch the complete documentation index at: https://astronomer.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Disable management of quotas and limit ranges

If you install Astro Private Cloud into an environment where administrators have enforced strict resource allocations, you might be restricted to a set of namespaces and can't adjust quotas or limit ranges. If the deployment orchestrator runs with roles that don't include permissions to access cluster limit ranges or quotas, it can result in Airflow Deployment failures when the APC API tries to pass `extra_capacity` requirements. To avoid this, you can use the APC API config, `disableManageResourceQuotasAndLimitRanges` set to `true` to disable passing `extra_capacity`.

```yaml wrap theme={null}
astronomer:
  houston:
    config:
      deployments:
        disableManageResourceQuotasAndLimitRanges: true
```

<Warning>When setting `disableManageResourceQuotasAndLimitRanges: true`, all Pods running in the APC application will be able to consume unlimited resources on the nodes that they are scheduled on, which can lead to cluster-wide instability. It is strongly advised that users manage their own `resourceQuotas` and `limitRanges` when setting `disableManageResourceQuotasAndLimitRanges: true`.</Warning>
