Skip to content

Commit

Permalink
Merge pull request #14 from truefoundry/node-count-null
Browse files Browse the repository at this point in the history
fixed node count bug
  • Loading branch information
dunefro authored Jul 1, 2024
2 parents 4115cae + d1f723f commit e4f7b49
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ locals {
name = "${v["name"]}sp"
node_count = 0
max_count = v["max_count"]
node_count = null
min_count = 0
os_disk_size_gb = 100
priority = "Spot"
Expand All @@ -34,6 +35,7 @@ locals {
name = "${v["name"]}"
node_count = 0
max_count = v["max_count"]
node_count = null
min_count = 0
os_disk_size_gb = 100
priority = "Regular"
Expand All @@ -54,6 +56,7 @@ locals {
name = "${v["name"]}sp"
node_count = 0
max_count = v["max_count"]
node_count = null
min_count = 0
os_disk_size_gb = 100
priority = "Spot"
Expand All @@ -77,6 +80,7 @@ locals {
name = "${v["name"]}"
node_count = 0
max_count = v["max_count"]
node_count = null
min_count = 0
os_disk_size_gb = 100
priority = "Regular"
Expand All @@ -98,6 +102,7 @@ locals {
name = "tfycp"
node_count = 0
max_count = 4
node_count = null
min_count = 0
os_disk_size_gb = 100
priority = "Spot"
Expand Down

0 comments on commit e4f7b49

Please # to comment.