Getting Information About the Quotas of a Profile

You can get information about the quotas of a profile using OKS CLI. By default, you can create up to two projects per profile and up to two clusters per project.

To increase one or both of these quotas, you need to send a request to our Support team at support@outscale.com and provide the ID of the OUTSCALE account linked to the profile. For more information on how to retrieve your account ID, see Getting Information About Your Account and Quotas.

Getting Information About the Quotas of a Profile using OKS CLI

The quotas command allows you to retrieve the quotas associated with a profile:

Request sample
$ oks-cli quotas \
    --profile YOUR_PROFILE \
    --output json

This command contains the following options that you may need to specify:

  • (optional) profile: The name of the profile whose quotas you want to retrieve. You need to specify this option if you don’t have a default profile.

  • (optional) output: The output format for the response (json | yaml | table). By default, the response format is JSON.

Result sample
{
    "Projects": 2,
    "ClustersPerProject": 2,
    "KubeVersions": [
        "1.30",
        "1.32",
        "1.31"
    ],
    "CPSubregions": [
        "2a",
        "2b",
        "2c"
    ]
}

The quotas command returns the following elements:

  • Projects: The maximum allowed number of projects.

  • ClustersPerProject: The maximum allowed number of clusters per project.

  • KubeVersions: The list of available Kubernetes versions.

  • CPSubregions: The list of available Subregions.

For more information, see About Regions and Subregions.

Related Pages