Skip to content
Snippets Groups Projects
Verified Commit fcd5aace authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

staging: Add worker0 node

Terraform will refuse to name another node the same (even on different
hypervisor).
That's for the best.

Starting the name at 0 is more consistent with other nodes anyway.
parent d056cb4f
No related branches found
No related tags found
No related merge requests found
......@@ -154,3 +154,20 @@ module "scheduler0" {
output scheduler0_summary {
value = "${module.scheduler0.summary}"
}
module "worker0" {
source = "./modules/node"
config = "${local.config}"
hostname = "worker0"
description = "Loader/lister service node"
cores = "4"
memory = "16384"
network = {
ip = "192.168.128.5"
}
}
output worker0_summary {
value = "${module.worker0.summary}"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment