Skip to content

Commit 0908a3b

Browse files
author
Chris Johnson
authored
Merge pull request #106 from CircleCI-Public/cj/instance-type-docs
[SERVER-1177] add details on how to choose an instance size
2 parents 64412ad + f8f581e commit 0908a3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nomad-aws/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ There are more examples in the `examples` directory.
6464
| blocked\_cidrs | List of CIDR blocks to block access to from within jobs, e.g. your K8s nodes.<br>You won't want to block access to external VMs here.<br>It's okay when your dns\_server is within a blocked CIDR block, you can use var.dns\_server to create an exemption. | `list(string)` | n/a | yes |
6565
| dns\_server | If the IP address of your VPC DNS server is within one of the blocked CIDR blocks you can create an exemption by entering the IP address for it here | `string` | n/a | yes |
6666
| enable\_mtls | MTLS support for Nomad traffic. Modifying this can be dangerous and is not recommended. | `bool` | `true` | no |
67-
| instance\_type | AWS Node type for instance. Must be amd64 linux type | `string` | `"t3a.2xlarge"` | no |
67+
| instance\_type | AWS Node type for instance. Must be amd64 linux type. The instance type must be large enough to fit the [resource classes](https://circleci.com/docs/2.0/executor-types/#available-docker-resource-classes) required. Choosing smaller instance types is an opportunity for cost savings. | `string` | `"t3a.2xlarge"` | no |
6868
| nodes | Number of nomad client to create | `number` | n/a | yes |
6969
| volume\_type | The EBS volume type of the nomad nodes. If gp3 is not available in your desired region, switch to gp2 | `string` | gp3 | no |
7070
| region | AWS Region | `string` | n/a | yes |

nomad-gcp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ There are more examples in the `examples` directory.
7070
| blocked\_cidrs | List of CIDR blocks to block access to from inside nomad jobs | `list(string)` | `[]` | no |
7171
| disk\_size\_gb | Root disk size in GB | `number` | `300` | no |
7272
| disk\_type | Root disk type. Can be 'pd-standard', 'pd-ssd', 'pd-balanced' or 'local-ssd' | `string` | `"pd-ssd"` | no |
73-
| machine\_type | Instance type for nomad clients | `string` | `"n2d-standard-8"` | no |
73+
| machine\_type | Instance type for nomad clients. The machine type must be large enough to fit the [resource classes](https://circleci.com/docs/2.0/executor-types/#available-docker-resource-classes) required. Choosing smaller instance types is an opportunity for cost savings. | `string` | `"n2d-standard-8"` | no |
7474
| max\_replicas | Max number of nomad clients when scaled up | `number` | `4` | no |
7575
| min\_replicas | Minimum number of nomad clients when scaled down | `number` | `1` | no |
7676
| name | VM instance name for nomad client | `string` | `"nomad"` | no |

0 commit comments

Comments
 (0)