You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| vpc | The virtual private cloud in which the instances operate. Not providing this assumes a default setting for VPC within the AWS environment. |
76
-
| subnet | The subnet supporting the instances. Not providing this assumes a default setting for the subnet within the AWS environment. |
77
-
| usePrivateAddress | Set to true to use the private IP address when communicating with auto-scaled nodes. Useful if ClusterODM is on the same vpc as the auto-scaled nodes. |
78
-
| assignPrivateAddressOnly | Set to true to ensure that only a private IP address is assigned to the created node. Only has effect if usePrivateAddress is true. Avoids extra charges. |
79
-
| securityGroup | AWS Security Group name (not ID). Must exist and allow incoming connections from your ClusterODM host on port TCP/3000. |
80
-
| createRetries | Number of attempts to create a droplet before giving up. Defaults to 1. |
81
-
| maxRuntime | Maximum number of seconds an instance is allowed to run ever. Set to -1 for no limit. |
82
-
| maxUploadTime | Maximum number of seconds an instance is allowed to receive file uploads. Set to -1 for no limit. |
83
-
| monitoring | Set to true to enable detailed Cloudwatch monitoring for the instance. |
84
-
| region | Region identifier where the instances should be created. |
85
-
| zone | Zone identifier where the instances should be created. |
86
-
| ami | The AMI (machine image) to launch this instance from. Note that AMIs are region-specific. |
87
-
| engineInstallUrl | Specify installer for Docker engine. This can be cleared if AMI already has Docker engine installed. |
88
-
| tags | Comma-separated list of key,value tags to associate to the instance. |
89
-
| spot | Whether to request spot instances. If this is true, a `spotPrice` needs to be provided in the `imageSizeMapping`. |
90
-
| imageSizeMapping | Max images count to instance size mapping. (See below.) |
91
-
| 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. |
92
-
| dockerImage | Docker image to launch |
93
-
| dockerDataDirMountPath | Path on node host to map to NodeODM data directory (/var/www/data). Use local instance storage for much faster I/O. |
94
-
| nodeSetupCmd | Can be optionally used to run a setup command on auto-scaled nodes right before we run ODM. |
| vpc | The virtual private cloud in which the instances operate. Not providing this assumes a default setting for VPC within the AWS environment. |
76
+
| subnet | The subnet supporting the instances. Not providing this assumes a default setting for the subnet within the AWS environment. |
77
+
| usePrivateAddress | Set to true to use the private IP address when communicating with auto-scaled nodes. Useful if ClusterODM is on the same vpc as the auto-scaled nodes. |
78
+
| assignPrivateAddressOnly | Set to true to ensure that only a private IP address is assigned to the created node. Only has effect if usePrivateAddress is true. Avoids extra charges. |
79
+
| securityGroup | AWS Security Group name (not ID). Must exist and allow incoming connections from your ClusterODM host on port TCP/3000. |
80
+
| createRetries | Number of attempts to create a droplet before giving up. Defaults to 1. |
81
+
| maxRuntime | Maximum number of seconds an instance is allowed to run ever. Set to -1 for no limit. |
82
+
| maxUploadTime | Maximum number of seconds an instance is allowed to receive file uploads. Set to -1 for no limit. |
83
+
| monitoring | Set to true to enable detailed Cloudwatch monitoring for the instance. |
84
+
| region | Region identifier where the instances should be created. |
85
+
| zone | Zone identifier where the instances should be created. |
86
+
| ami | The AMI (machine image) to launch this instance from. Note that AMIs are region-specific. |
87
+
| engineInstallUrl | Specify installer for Docker engine. This can be cleared if AMI already has Docker engine installed. |
88
+
| tags | Comma-separated list of key,value tags to associate to the instance. |
89
+
| spot | Whether to request spot instances. If this is true, a `spotPrice` needs to be provided in the `imageSizeMapping`. |
90
+
| imageSizeMapping | Max images count to instance size mapping. (See below.) |
91
+
| 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. |
92
+
| dockerImage | Docker image to launch |
93
+
| dockerDataDirMountPath | Path on node host to map to NodeODM data directory (/var/www/data). Use local instance storage for much faster I/O. |
94
+
| dockerGpu | Enables GPU acceleration by passing `--gpu all` to docker |
95
+
| nodeSetupCmd | Can be optionally used to run a setup command on auto-scaled nodes right before we run ODM. |
Copy file name to clipboardExpand all lines: docs/digitalocean.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,4 +60,5 @@ Example configuration file:
60
60
| minImages | Minimum number of images that a dataset needs to have for the autoscaler to be used (-1 = no minimum). |
61
61
| addSwap | Optionally add this much swap space to the droplet as a factor of total RAM (`RAM * addSwap`). A value of `1` sets a swapfile equal to the available RAM. |
62
62
| dockerImage | Docker image to launch
63
+
| dockerGpu | Enables GPU acceleration by passing `--gpu all` to docker |
Copy file name to clipboardExpand all lines: docs/hetzner.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,3 +71,4 @@ Example configuration file:
71
71
| minImages | Minimum number of images that a dataset needs to have for the autoscaler to be used (-1 = no minimum). |
72
72
| addSwap | Optionally add this much swap space to the machine as a factor of total RAM (`RAM * addSwap`). A value of `1` sets a swapfile equal to the available RAM. |
73
73
| dockerImage | Docker image to launch |
74
+
| dockerGpu | Enables GPU acceleration by passing `--gpu all` to docker |
Copy file name to clipboardExpand all lines: docs/scaleway.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,3 +66,4 @@ Example configuration file:
66
66
| minImages | Minimum number of images that a dataset needs to have for the autoscaler to be used (-1 = no minimum). |
67
67
| addSwap | Optionally add this much swap space to the machine as a factor of total RAM (`RAM * addSwap`). A value of `1` sets a swapfile equal to the available RAM. |
68
68
| dockerImage | Docker image to launch |
69
+
| dockerGpu | Enables GPU acceleration by passing `--gpu all` to docker |
0 commit comments