Skip to content

Commit

Permalink
Update aws.md
Browse files Browse the repository at this point in the history
The aws.js code uses only the ami property, not the image property.

https://github.com/OpenDroneMap/ClusterODM/blob/master/libs/asr-providers/aws.js#L42
  • Loading branch information
Jeongyong-park authored Aug 22, 2019
1 parent 6e0cd14 commit 38d41c3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ the on-demand instance cost - you'll always pay the current market price, not yo
"region": "us-west-2",
"tags": ["type,clusterodm"],

"image": "ami-07b4f3c02c7f83d59",
"ami": "ami-07b4f3c02c7f83d59",

"spot": true,
"imageSizeMapping": [
Expand All @@ -63,8 +63,7 @@ the on-demand instance cost - you'll always pay the current market price, not yo
| monitoring | Set to true to enable detailed Cloudwatch monitoring for the instance. |
| region | Region identifier where the instances should be created. |
| ami | The AMI (machine image) to launch this instance from. |
| tags | Comma-separated list of key,value tags to associate to the instance. |
| image | AMI identifier |
| tags | Comma-separated list of key,value tags to associate to the instance. |
| spot | Whether to request spot instances. If this is true, a `spotPrice` needs to be provided in the `imageSizeMapping`. |
| imageSizeMapping | Max images count to instance size mapping. (See below.) |
| addSwap | Optionally add this much swap space to the instance as a factor of total RAM (`RAM * addSwap`). A value of `1` sets a swapfile equal to the available RAM. |
Expand Down

0 comments on commit 38d41c3

Please sign in to comment.