Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
terraform/module-eks-node: bump node_asg_max_size default value to 10…
Browse files Browse the repository at this point in the history
…, which make more sense with the option of doing autoscaling
  • Loading branch information
Steve Durrheimer committed Oct 2, 2019
1 parent d75a9df commit ca86a80
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ci/terraform/eks.tf
Expand Up @@ -194,7 +194,7 @@ module "eks-node" {
#. node_asg_min_size (optional): 1
#+ Minimum number of node servers allowed in the Auto Scaling Group.

#. node_asg_max_size (optional): 2
#. node_asg_max_size (optional): 10
#+ Maximum number of node servers allowed in the Auto Scaling Group.

#. node_disk_type (optional): gp2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -76,7 +76,7 @@ In order to run this task, couple elements are required within the infrastructur
|`extra_tags`|Dict of extra tags to add on aws resources. format { "foo" = "bar" }.|`-`|`{}`|`False`|
|`keypair_name`|Name of an existing AWS SSH keypair to use to deploy EC2 instances.|`-`|`cycloid`|`False`|
|`metrics_sg_allow`|Additionnal security group ID to assign to servers. Goal is to allow monitoring server to query metrics. Make sure the prometheus VPC is peered.|`-`|`""`|`False`|
|`node_asg_max_size`|Maximum number of node servers allowed in the Auto Scaling Group.|`-`|`2`|`False`|
|`node_asg_max_size`|Maximum number of node servers allowed in the Auto Scaling Group.|`-`|`10`|`False`|
|`node_asg_min_size`|Minimum number of node servers allowed in the Auto Scaling Group.|`-`|`1`|`False`|
|`node_count`|Desired number of node servers.|`-`|`1`|`False`|
|`node_disk_size`|EKS nodes root disk size.|`-`|`60`|`False`|
Expand Down
1 change: 1 addition & 0 deletions terraform/eks.tf
2 changes: 1 addition & 1 deletion terraform/eks.tf.sample
Expand Up @@ -194,7 +194,7 @@ module "eks-node" {
#. node_asg_min_size (optional): 1
#+ Minimum number of node servers allowed in the Auto Scaling Group.

#. node_asg_max_size (optional): 2
#. node_asg_max_size (optional): 10
#+ Maximum number of node servers allowed in the Auto Scaling Group.

#. node_disk_type (optional): gp2
Expand Down
2 changes: 1 addition & 1 deletion terraform/module-eks-node/variables.tf
Expand Up @@ -144,7 +144,7 @@ variable "node_asg_min_size" {

variable "node_asg_max_size" {
description = "EKS nodes Auto Scaling Group maximum size."
default = 2
default = 10
}

variable "node_update_min_in_service" {
Expand Down

0 comments on commit ca86a80

Please sign in to comment.