Package version:

Interface ContainerResources

Container App container resource requirements.

interface ContainerResources {
    cpu?: number;
    ephemeralStorage?: string;
    memory?: string;
}

Properties

cpu?: number

Required CPU in cores, e.g. 0.5

ephemeralStorage?: string

Ephemeral Storage, e.g. "1Gi" NOTE: This property will not be serialized. It can only be populated by the server.

memory?: string

Required memory, e.g. "250Mb"