Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 2.87 KB

File metadata and controls

32 lines (27 loc) · 2.87 KB

ApplicationRequest

Properties

Name Type Description Notes
storage Option<Vecmodels::ServiceStorageRequestStorageInner> [optional]
ports Option<Vecmodels::ServicePortRequestPortsInner> [optional]
name String name is case insensitive
description Option<String> give a description to this application [optional]
git_repository models::ApplicationGitRepositoryRequest
build_mode Option<models::BuildModeEnum> [optional]
dockerfile_path Option<String> The path of the associated Dockerfile. Only if you are using build_mode = DOCKER [optional]
cpu Option<i32> unit is millicores (m). 1000m = 1 cpu [optional][default to 500]
memory Option<i32> unit is MB. 1024 MB = 1GB [optional][default to 512]
gpu Option<i32> [optional][default to 0]
min_running_instances Option<i32> Minimum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: 0 means that there is no application running. [optional][default to 1]
max_running_instances Option<i32> Maximum number of instances running. This resource auto-scale based on the CPU and Memory consumption. Note: -1 means that there is no limit. [optional][default to 1]
healthchecks models::Healthcheck
auto_preview Option<bool> Specify if the environment preview option is activated or not for this application. If activated, a preview environment will be automatically cloned at each pull request. If not specified, it takes the value of the auto_preview property from the associated environment. [optional][default to true]
arguments Option<Vec> [optional]
entrypoint Option<String> optional entrypoint when launching container [optional]
auto_deploy Option<bool> Specify if the application will be automatically updated after receiving a new commit. [optional]
annotations_groups Option<Vecmodels::ServiceAnnotationRequest> [optional]
labels_groups Option<Vecmodels::ServiceLabelRequest> [optional]
icon_uri Option<String> Icon URI representing the application. [optional]
docker_target_build_stage Option<String> The target build stage in the Dockerfile to build [optional]
autoscaling Option<models::KedaAutoscalingRequest> [optional]

[Back to Model list] [Back to API list] [Back to README]