X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/10c1e7359286edd6562c52304e9706449a9ee53f..59a972c831bc8f7cd4e896ed8e1c71277b97f04e:/services/nodemanager/doc/ec2.example.cfg diff --git a/services/nodemanager/doc/ec2.example.cfg b/services/nodemanager/doc/ec2.example.cfg index f5329ebe16..3bc905b085 100644 --- a/services/nodemanager/doc/ec2.example.cfg +++ b/services/nodemanager/doc/ec2.example.cfg @@ -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