Skip to content
Snippets Groups Projects
Unverified Commit 6bb4ddd7 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

staging: Add db0 node

Related T1875
parent 3ff4f0b6
No related branches found
No related tags found
1 merge request!34staging: Add db0 node
...@@ -91,5 +91,23 @@ module "storage0" { ...@@ -91,5 +91,23 @@ module "storage0" {
} }
} }
output storage0_out {
value = "${module.storage0.name} ${module.storage0.ip} ${module.storage0.macaddr}"
}
module "db0" {
source = "./modules/node"
hostname = "db0"
description = "swh db"
cores = "4"
memory = "16384"
network = {
ip = "192.168.128.3"
} }
} }
output db0_out {
value = "${module.db0.name} ${module.db0.ip} ${module.db0.macaddr}"
}
  • Phabricator Migration user @phabricator-migration ·
    Owner

    Some references in the commit message have been migrated:

    • T1875 is now infra/sysadm-environment#1875
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