Skip to main content

Create a application profile

POST 

/api/v1/applications/profiles

Add a new application profile to a organization

Request

Header Parameters

    X-API-KEY stringrequired

    API Key

Body

required

Application Profile

    availabilityTier string

    Possible values: [basic, standard, premium]

    availabilityTier is the availability tier, defaults to 'Basic'.

    cloudProvider

    object

    provider stringrequired

    Possible values: [aws, gcp, azure, digitalocean]

    provider is the name of the cloud service provider. example: aws,gcp,azure,digitalocean

    region stringrequired

    Possible values: non-empty

    region is the geographic region of the cloud provider. example: us-east-1

    clusterName string

    clusterName is the name of the cluster. This takes the highest precedence over cloud provider.

    profileName stringrequired

    Possible values: non-empty and <= 50 characters

    profileName is the name of the profile, must be a valid DNS name. example: example-profile

    resources

    object

    memory

    object

    required

    CPU (millicore) represents the CPU resource requirements, including minimum and maximum limits. CPU Resources json:"cpu,omitempty" memory represents the memory resource requirements, including minimum and maximum limits. Default unit is Gi.

    maximum stringrequired

    maximum is the maximum amount of the resource.

    minimum stringrequired

    minimum is the minimum amount of the resource.

Responses

Application profile created successfully

Loading...