Fork me on GitHub

nmo

manage clusters#

Synopsis#

nmo.commands.cluster.add(node, url, cluster)
nmo.commands.cluster.get([clustername], [node])
nmo.commands.cluster.join(clustername)

Description#

Manage clusters.

Add a node to a cluster in the nmo configuration file. Overwrites nodes with the same name in the same cluster.

Example:

var node = 'mycustomnodename';
var url = 'http://user:pw@192.168.1.42';
var cluster = 'myfirstcluster';
nmo.commands.cluster.add(node, url, cluster)

Get all clusters, one specific cluster or just one node or just one the values for one node.

Example:

nmo.commands.cluster.get('myfirstcluster')

Join nodes into a fully operational cluster.

Example:

nmo.commands.cluster.join('myfirstcluster')