diff --git a/infra/vultr-kubernetes/variables.tfvars b/infra/vultr-kubernetes/variables.tfvars index 2a74640..9ba7402 100644 --- a/infra/vultr-kubernetes/variables.tfvars +++ b/infra/vultr-kubernetes/variables.tfvars @@ -21,31 +21,22 @@ cluster = { game_servers = { namespace = "games" configs = { - # minecraft = { - # image = "itzg/minecraft-server" - # cpu = "1000m" - # mem = "2048Mi" - # port = { - # expose = 30808 - # internal = 80 - # } - # } } } admin_services = { namespace = "admin-services" configs = { - # health = { - # image = "nginx:latest" - # name = "health" - # cpu = "200m" - # mem = "64Mi" - # port = { - # notes = "Basic nginx sanity check service" - # expose = 30800 - # internal = 80 - # } - # } + health = { + image = "nginx:latest" + name = "health" + cpu = "200m" + mem = "64Mi" + port = { + notes = "Basic nginx sanity check service" + expose = 30800 + internal = 80 + } + } } }