Skip to content

Commit

Permalink
[feat/#13] Fix: cluster node size from 1 to 2(reduce instance from t3…
Browse files Browse the repository at this point in the history
….medium to t3.small)
  • Loading branch information
NayeonKeum committed Aug 31, 2023
1 parent b1db9ab commit 723d8df
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions moaroom-cluster-pb-tf/main.tf → moaroom-cluster-tf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ module "eks" {

eks_managed_node_groups = {
one = {
name = "${var.cluster_name}-1"
name = "${var.cluster_name}-node-1"

instance_types = ["t3.medium"]
instance_types = ["t3.small"]

min_size = 1
max_size = 2
desired_size = 1
max_size = 3
desired_size = 2
}
}
}
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ variable "azs" {
variable "cluster_name" {
description = "Cluster Name"
type = string
default = null
default = "moaroom-cluster"
}

variable "cluster_version" {
Expand Down

0 comments on commit 723d8df

Please sign in to comment.