Skip to content

Commit

Permalink
feat: resize the node pools
Browse files Browse the repository at this point in the history
Use a single manager node as that's fine for our requirements
  • Loading branch information
mrsimonemms committed Nov 1, 2024
1 parent b6a0ddd commit 0042ec2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stacks/dev/hetzner/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ include {

inputs = {
k3s_manager_pool = {
count = 3
count = 1
}
k3s_worker_pools = [
{
Expand Down
8 changes: 7 additions & 1 deletion stacks/prod/hetzner/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ include {

inputs = {
k3s_manager_pool = {
count = 3
count = 1
}
k3s_worker_pools = [
{
count = 2
name = "pool1"
},
]
}

0 comments on commit 0042ec2

Please sign in to comment.