@@ -11,57 +11,57 @@ The Cortex cluster may be configured by providing a configuration file to `corte
1111aws_access_key_id : ***
1212aws_secret_access_key : ***
1313
14- # Optional AWS credentials for the Operator which may be used to restrict its AWS access (defaults to the AWS credentials set above)
14+ # optional AWS credentials for the operator which may be used to restrict its AWS access (defaults to the AWS credentials set above)
1515cortex_aws_access_key_id : ***
1616cortex_aws_secret_access_key : ***
1717
18- # Instance type Cortex will use
18+ # AWS region
19+ region : us-west-2
20+
21+ # S3 bucket
22+ bucket : cortex-<RANDOM_ID>
23+
24+ # instance type
1925instance_type : m5.large
2026
21- # Minimum number of worker instances in the cluster (must be >= 0)
27+ # minimum number of instances (must be >= 0)
2228min_instances : 1
2329
24- # Maximum number of worker instances in the cluster (must be >= 1)
30+ # maximum number of instances (must be >= 1)
2531max_instances : 5
2632
27- # Volume size in Gi for worker instances in the cluster (default: 50)
33+ # instance volume size (GB) (default: 50)
2834instance_volume_size : 50
2935
30- # Name of the S3 bucket Cortex will use
31- bucket : cortex-<RANDOM_ID>
32-
33- # Region Cortex will use
34- region : us-west-2
35-
36- # Name of the CloudWatch log group Cortex will use
36+ # CloudWatch log group for cortex
3737log_group : cortex
3838
39- # Name of the EKS cluster Cortex will create
39+ # EKS cluster name for cortex (default: cortex)
4040cluster_name : cortex
4141
42- # Flag to enable collection of anonymous usage stats and error reports
42+ # whether to collect anonymous usage stats and error reports (default: true)
4343telemetry : true
4444
45- # Flag to enable using spot instances in worker cluster (default: true)
45+ # whether to use spot instances in the cluster (default: true)
4646spot : true
4747
4848spot_config :
49- # List of additional instances with identical or better specs than your primary instance type (defaults to 2 compatible instances sorted by price)
49+ # additional instances with identical or better specs than the primary instance type (defaults to 2 instances sorted by price)
5050 instance_distribution : [t3.large, t3a.large]
5151
52- # The minimum number of instances in your cluster that should be on demand (default: 0)
52+ # minimum number of on demand instances (default: 0)
5353 on_demand_base_capacity : 0
5454
55- # The percentage of on demand instances to use after the on demand base capacity has been met [0, 100] (default: 0)
55+ # percentage of on demand instances to use after the on demand base capacity has been met [0, 100] (default: 0)
5656 on_demand_percentage_above_base_capacity : 0
5757
58- # The max price for instances (defaults to the on demand price of the primary instance type)
58+ # max price for instances (defaults to the on demand price of the primary instance type)
5959 max_price : 0.096
6060
61- # The number of Spot Instance pools across which to allocate Spot instances [1, 20] (default: 2)
61+ # number of spot instance pools across which to allocate spot instances [1, 20] (default: 2)
6262 spot_instance_pools : 2
6363
64- # Image paths
64+ # docker image paths
6565image_predictor_serve : cortexlabs/predictor-serve:0.11.0
6666image_predictor_serve_gpu : cortexlabs/predictor-serve-gpu:0.11.0
6767image_tf_serve : cortexlabs/tf-serve:0.11.0
0 commit comments