Fix unit error in the node manager documentation for EC2.
authorWard Vandewege <wvandewege@veritasgenetics.com>
Wed, 8 May 2019 20:39:17 +0000 (16:39 -0400)
committerWard Vandewege <wvandewege@veritasgenetics.com>
Wed, 8 May 2019 20:41:59 +0000 (16:41 -0400)
refs #15199

Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege@veritasgenetics.com>

services/nodemanager/doc/ec2.example.cfg

index f5329ebe16213ad1d7fa37aff09212efce299603..3bc905b0857f0bf52ba71944aeab5e2eea2242a6 100644 (file)
@@ -176,7 +176,7 @@ security_groups = idstring1, idstring2
 # size class (since libcloud does not provide any consistent API for exposing
 # this setting).
 # You may also want to define the amount of scratch space (expressed
-# in GB) for Crunch jobs.  You can also override Amazon's provided
+# in MB) for Crunch jobs.  You can also override Amazon's provided
 # data fields (such as price per hour) by setting them here.
 #
 # Additionally, you can ask for a preemptible instance (AWS's spot instance)
@@ -184,19 +184,22 @@ security_groups = idstring1, idstring2
 # both spot & reserved versions of the same size, you can do so by renaming
 # the Size section and specifying the instance type inside it.
 
+# 100 GB scratch space
 [Size m4.large]
 cores = 2
 price = 0.126
-scratch = 100
+scratch = 100000
 
+# 10 GB scratch space
 [Size m4.large.spot]
 instance_type = m4.large
 preemptible = true
 cores = 2
 price = 0.126
-scratch = 100
+scratch = 10000
 
+# 200 GB scratch space
 [Size m4.xlarge]
 cores = 4
 price = 0.252
-scratch = 100
+scratch = 200000