Skip to content

Commit

Permalink
feat: add architecture priority to node template constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenorgate committed Oct 7, 2024
1 parent 0c192f4 commit 0ae5bf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ resource "castai_node_template" "this" {
min_memory = try(constraints.value.min_memory, null)
max_memory = try(constraints.value.max_memory, null)
architectures = try(constraints.value.architectures, ["amd64"])
architecture_priority = try(constraints.value.architecture_priority, [])
azs = try(constraints.value.azs, null)
burstable_instances = try(constraints.value.burstable_instances, null)
customer_specific = try(constraints.value.customer_specific, null)
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
}
castai = {
source = "castai/castai"
version = "~> 7.16"
version = "~> 7.17"
}
helm = {
source = "hashicorp/helm"
Expand Down

0 comments on commit 0ae5bf7

Please sign in to comment.