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 2128f2d commit 9bac589
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 @@ -101,6 +101,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, [])
os = try(constraints.value.os, ["linux"])
azs = try(constraints.value.azs, null)
burstable_instances = try(constraints.value.burstable_instances, null)
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
}
castai = {
source = "castai/castai"
version = "~> 7.14"
version = "~> 7.17"
}
helm = {
source = "hashicorp/helm"
Expand Down

0 comments on commit 9bac589

Please sign in to comment.