Skip to content

Commit

Permalink
fix: downward adjust the minimum controller node size
Browse files Browse the repository at this point in the history
  • Loading branch information
fullykubed committed Mar 25, 2024
1 parent 43059ff commit 9c84950
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ inputs = {
service_cidr = "172.20.0.0/16"

controller_node_count = 3
controller_node_instance_types = ["t3a.large"]
controller_node_instance_types = ["t3a.medium"]
controller_node_subnets = [
"PRIVATE_A",
"PRIVATE_B",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ The subnets you choose should be **private** and should each be in a different A

The nodes created by this module are used to run cluster-critical controllers, without which your cluster will not
function properly. [^5] You should use at least three to facilitate the high-availability algorithms used by some of the
controllers. The `t3a.large` is the minimum recommended instance size if using three nodes.
controllers. The `t3a.medium` is the minimum recommended instance size if using three nodes.

[^5]: Additional "worker" nodes will be dynamically provisioned by [Karpenter](https://karpenter.sh/) in a future section of this guide.

Expand Down

0 comments on commit 9c84950

Please sign in to comment.