diff options
author | elijah <elijah@riseup.net> | 2013-06-08 01:04:38 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-06-08 01:04:38 -0700 |
commit | c552bfd095b3a1c9a2e15df5330201713ce5a6b8 (patch) | |
tree | 413e15d0ca7fbee6cf9ba833db39722f291ad8fe /nodes | |
parent | 3094c9b9cfd5beb72485f2c27246c3381b82fbce (diff) |
added and initialized dc production nodes (snake, wombat, zebra)
Diffstat (limited to 'nodes')
-rw-r--r-- | nodes/snake.json | 8 | ||||
-rw-r--r-- | nodes/wombat.json | 8 | ||||
-rw-r--r-- | nodes/zebra.json | 5 |
3 files changed, 21 insertions, 0 deletions
diff --git a/nodes/snake.json b/nodes/snake.json new file mode 100644 index 0000000..2a4fe19 --- /dev/null +++ b/nodes/snake.json @@ -0,0 +1,8 @@ +{ + "ip_address": "199.119.112.22", + "services": [ + "couchdb", + "soledad" + ], + "tags": ["production", "dc"] +} diff --git a/nodes/wombat.json b/nodes/wombat.json new file mode 100644 index 0000000..e99df3d --- /dev/null +++ b/nodes/wombat.json @@ -0,0 +1,8 @@ +{ + "ip_address": "199.119.112.20", + "tags": ["production", "dc"], + "services": [ + "monitor", + "webapp" + ] +} diff --git a/nodes/zebra.json b/nodes/zebra.json new file mode 100644 index 0000000..4d27994 --- /dev/null +++ b/nodes/zebra.json @@ -0,0 +1,5 @@ +{ + "ip_address": "199.119.112.21", + "services": "mx", + "tags": ["production", "dc"] +} |