Skip to content

Commit

Permalink
Add in defaults for node pool autoscaling (#430)
Browse files Browse the repository at this point in the history
Signed-off-by: Priya Wadhwa <priya@chainguard.dev>

Signed-off-by: Priya Wadhwa <priya@chainguard.dev>
  • Loading branch information
priyawadhwa authored Oct 19, 2022
1 parent 38c958a commit 7052248
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions terraform/gcp/modules/sigstore/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -263,13 +263,16 @@ variable "ctlog_shards" {

// Cluster node pool
variable "initial_node_count" {
type = number
type = number
default = 3
}

variable "autoscaling_min_node" {
type = number
type = number
default = 1
}

variable "autoscaling_max_node" {
type = number
type = number
default = 10
}

0 comments on commit 7052248

Please sign in to comment.