Skip to content

Commit 5c120d2

Browse files
fix: instance sizes were overscaled (#126)
* Update main.tf * Update .header.md (#125) * docs: automated update of terraform docs --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f907493 commit 5c120d2

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module "captain" {
2727
node_pools = [
2828
# {
2929
# "ami_image_id" : "ami-0408823a87d4095d9",
30-
# "instance_type" : "t3a.xlarge",
30+
# "instance_type" : "t3a.large",
3131
# "name" : "glueops-platform-node-pool-1",
3232
# "node_count" : 4,
3333
# "spot" : false,
@@ -47,7 +47,7 @@ module "captain" {
4747
# },
4848
# {
4949
# "ami_image_id" : "ami-0408823a87d4095d9",
50-
# "instance_type" : "t3a.xlarge",
50+
# "instance_type" : "t3a.small",
5151
# "name" : "glueops-platform-node-pool-argocd-app-controller-1",
5252
# "node_count" : 2,
5353
# "spot" : false,
@@ -67,9 +67,9 @@ module "captain" {
6767
# },
6868
# {
6969
# "ami_image_id" : "ami-0408823a87d4095d9",
70-
# "instance_type" : "t3a.large",
70+
# "instance_type" : "t3a.medium",
7171
# "name" : "clusterwide-node-pool-1",
72-
# "node_count" : 4,
72+
# "node_count" : 2,
7373
# "spot" : false,
7474
# "disk_size_gb" : 20,
7575
# "max_pods" : 110,

docs/.header.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module "captain" {
2626
node_pools = [
2727
# {
2828
# "ami_image_id" : "ami-0408823a87d4095d9",
29-
# "instance_type" : "t3a.xlarge",
29+
# "instance_type" : "t3a.large",
3030
# "name" : "glueops-platform-node-pool-1",
3131
# "node_count" : 4,
3232
# "spot" : false,
@@ -46,7 +46,7 @@ module "captain" {
4646
# },
4747
# {
4848
# "ami_image_id" : "ami-0408823a87d4095d9",
49-
# "instance_type" : "t3a.xlarge",
49+
# "instance_type" : "t3a.small",
5050
# "name" : "glueops-platform-node-pool-argocd-app-controller-1",
5151
# "node_count" : 2,
5252
# "spot" : false,
@@ -66,9 +66,9 @@ module "captain" {
6666
# },
6767
# {
6868
# "ami_image_id" : "ami-0408823a87d4095d9",
69-
# "instance_type" : "t3a.large",
69+
# "instance_type" : "t3a.medium",
7070
# "name" : "clusterwide-node-pool-1",
71-
# "node_count" : 4,
71+
# "node_count" : 2,
7272
# "spot" : false,
7373
# "disk_size_gb" : 20,
7474
# "max_pods" : 110,

tests/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module "captain" {
1111
node_pools = [
1212
# {
1313
# "ami_image_id" : "ami-0408823a87d4095d9",
14-
# "instance_type" : "t3a.xlarge",
14+
# "instance_type" : "t3a.large",
1515
# "name" : "glueops-platform-node-pool-1",
1616
# "node_count" : 4,
1717
# "spot" : false,
@@ -31,7 +31,7 @@ module "captain" {
3131
# },
3232
# {
3333
# "ami_image_id" : "ami-0408823a87d4095d9",
34-
# "instance_type" : "t3a.xlarge",
34+
# "instance_type" : "t3a.small",
3535
# "name" : "glueops-platform-node-pool-argocd-app-controller-1",
3636
# "node_count" : 2,
3737
# "spot" : false,
@@ -51,9 +51,9 @@ module "captain" {
5151
# },
5252
# {
5353
# "ami_image_id" : "ami-0408823a87d4095d9",
54-
# "instance_type" : "t3a.large",
54+
# "instance_type" : "t3a.medium",
5555
# "name" : "clusterwide-node-pool-1",
56-
# "node_count" : 4,
56+
# "node_count" : 2,
5757
# "spot" : false,
5858
# "disk_size_gb" : 20,
5959
# "max_pods" : 110,

0 commit comments

Comments
 (0)