* [CI] Migrate CI pipelines from Jenkins to BuildKite * Require manual approval * Less verbose output when pulling Docker * Remove us-east-2 from metadata.py * Add documentation * Add missing underscore * Add missing punctuation * More specific instruction * Better paragraph structure
19 lines
655 B
Python
19 lines
655 B
Python
IMAGE_PARAMS = {
|
|
"linux-amd64-gpu": {
|
|
"BaseImageId": "linuxamd64",
|
|
# AMI ID is looked up from Buildkite's CloudFormation template
|
|
"BootstrapScript": "linux-amd64-gpu-bootstrap.yml",
|
|
"InstanceType": "g4dn.xlarge",
|
|
"InstanceOperatingSystem": "Linux",
|
|
"VolumeSize": "40", # in GiBs
|
|
},
|
|
"windows-gpu": {
|
|
"BaseImageId": "windows",
|
|
# AMI ID is looked up from Buildkite's CloudFormation template
|
|
"BootstrapScript": "windows-gpu-bootstrap.yml",
|
|
"InstanceType": "g4dn.2xlarge",
|
|
"InstanceOperatingSystem": "Windows",
|
|
"VolumeSize": "80", # in GiBs
|
|
},
|
|
}
|