Skip to content

Commit

Permalink
add queued_provisioning variable to all pools for infra module (#909)
Browse files Browse the repository at this point in the history
add queued_provisioning variable to all pools for infra module -- retry
  • Loading branch information
volatilemolotov authored Dec 23, 2024
1 parent 4ae5ce8 commit 768bd8a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions infrastructure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ variable "cpu_pools" {
preemptible = optional(bool, false)
initial_node_count = optional(number, 1)
accelerator_count = optional(number, 0)
queued_provisioning = optional(bool, false)
}))
default = [{
name = "cpu-pool"
Expand Down Expand Up @@ -245,6 +246,7 @@ variable "gpu_pools" {
accelerator_count = optional(number, 0)
accelerator_type = optional(string, "nvidia-tesla-t4")
gpu_driver_version = optional(string, "DEFAULT")
queued_provisioning = optional(bool, false)
}))
default = [{
name = "gpu-pool"
Expand Down Expand Up @@ -283,6 +285,7 @@ variable "tpu_pools" {
initial_node_count = optional(number, 1)
accelerator_count = optional(number, 0)
accelerator_type = optional(string, "nvidia-tesla-t4")
queued_provisioning = optional(bool, false)
}))
default = []
}

0 comments on commit 768bd8a

Please sign in to comment.