Comment 12 for bug 1394755

Revision history for this message
Nate Finch (natefinch) wrote :

This got tested by the Landscape team, and functions to their satisfaction, though there was one confusing bit. When using --to for machines already in juju, you need to use their machine ids, not their maas name. This is primarily because juju doesn't use the maas node names to reference machines already in the environment.

Thus, this is what Landscape tried first:

juju bootstrap --to nodeA
juju machine add nodeB
juju machine add nodeC
juju ensure-availability --to nodeB,nodeC

But, what they needed to do was this:

juju bootstrap --to nodeA
juju machine add nodeB
juju machine add nodeC
juju ensure-availability --to 1,2

It would be nice if we could reference machines in the environment by their node names, but that is currently not supported.