File tree Expand file tree Collapse file tree 3 files changed +38
-2
lines changed
scaletest/terraform/action Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Original file line number Diff line number Diff line change
1
+ * .tfvars
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ terraform {
16
16
}
17
17
18
18
// We use the kubectl provider to apply Custom Resources.
19
- // The kubernetes provider requires the CRD is already present
19
+ // The kubernetes provider requires the CRD is already present
20
20
// and would require a separate apply step beforehand.
21
21
// https://github.com/hashicorp/terraform-provider-kubernetes/issues/1367
22
22
kubectl = {
@@ -40,7 +40,7 @@ terraform {
40
40
}
41
41
}
42
42
43
- required_version = " ~> 1.9.0"
43
+ required_version = " >= 1.9.0"
44
44
}
45
45
46
46
provider "google" {
Original file line number Diff line number Diff line change @@ -35,5 +35,40 @@ locals {
35
35
max_connections = 500
36
36
}
37
37
}
38
+ small = {
39
+ coder = {
40
+ nodepool_size = 3
41
+ machine_type = " c2d-standard-8"
42
+ replicas = 3
43
+ cpu_request = " 4000m"
44
+ mem_request = " 12Gi"
45
+ cpu_limit = " 4000m"
46
+ mem_limit = " 12Gi"
47
+ }
48
+ provisionerd = {
49
+ replicas = 5
50
+ cpu_request = " 100m"
51
+ mem_request = " 256Mi"
52
+ cpu_limit = " 1000m"
53
+ mem_limit = " 1Gi"
54
+ }
55
+ workspaces = {
56
+ count_per_deployment = 10
57
+ nodepool_size = 3
58
+ machine_type = " c2d-standard-8"
59
+ cpu_request = " 100m"
60
+ mem_request = " 128Mi"
61
+ cpu_limit = " 100m"
62
+ mem_limit = " 128Mi"
63
+ }
64
+ misc = {
65
+ nodepool_size = 1
66
+ machine_type = " c2d-standard-8"
67
+ }
68
+ cloudsql = {
69
+ tier = " db-custom-2-7680"
70
+ max_connections = 100
71
+ }
72
+ }
38
73
}
39
74
}
You can’t perform that action at this time.
0 commit comments