github.com/mhilton/juju-juju@v0.0.0-20150901100907-a94dd2c73455/cmd/juju/helptopics/placement.go (about)

     1  // Copyright 2015 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package helptopics
     5  
     6  const Placement = `
     7  Placement directives provide users with a means of providing instruction
     8  to the cloud provider on how to allocate a machine. For example, the MAAS
     9  provider can be directed to acquire a particular node by specifying its
    10  hostname.
    11  
    12  See provider-specific documentation for details of placement directives
    13  supported by that provider.
    14  
    15  Examples:
    16  
    17    # Bootstrap using an instance in the "us-east-1a" EC2 availability zone.
    18    juju bootstrap --to zone=us-east-1a
    19  
    20    # Acquire the node "host01.maas" and add it to Juju.
    21    juju add-machine host01.maas
    22  
    23  See also:
    24    juju help add-machine
    25    juju help bootstrap
    26  `