separating game and admin service node pools with pods and what not
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 3s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 14s

This commit is contained in:
2024-12-19 01:28:44 -08:00
parent ac11487feb
commit f2c4506245
5 changed files with 55 additions and 33 deletions

View File

@@ -25,12 +25,12 @@ variable cluster {
region = string
label = string
version = string
metapool = object({
pools = map(object({
plan = string
autoscale = bool
min = number
max = number
})
}))
})
}
@@ -38,17 +38,16 @@ variable game_servers {
type = object({
namespace = string
configs = map(object({
name = optional(string)
image = string
cpu = string
mem = string
port = object({
internal = number
expose = number
})
proto = optional(string)
name = optional(string)
image = string
cpu = string
mem = string
port = object({
internal = number
expose = number
})
)
proto = optional(string)
}))
})
}