An availability zone is an organisational unit containing nodes, where each node is in exactly one zone. While in production, a machine can be allocated from a specific zone. Availability zones can be used for fault-tolerance, service performance, and power management. See Zone examples for more details.
A newly installed MAAS comes with a default zone which initially contains all nodes. You cannot remove the ‘default’ zone or change its name, but you can create new zones and assign machine to them. This article will help you learn:
How to list availability zones
To see a list of availability zones, enter the following command:
maas $PROFILE zones read \
| jq -r '(["ZONE","NAME","DESCRIPTION"]
| (., map(length*"-"))), (.[] | [.id, .name, .description])
| @tsv' | column -t
which produces output similar to:
ZONE NAME DESCRIPTION
---- ---- -----------
5 BizOffice
1 default
4 Inventory
2 Medications
3 Payroll
6 ProServ
How to add an availability zone
To create a zone, enter the following command:
maas $PROFILE zones create name=$ZONE_NAME description=$ZONE_DESCRIPTION
How to edit an existing availability zone
To edit a zone, enter a command similar to the following:
maas $PROFILE zone update $OLD_ZONE_NAME name=$NEW_ZONE_NAME \
description=$ZONE_DESCRIPTION
How to delete an existing availability zone
To delete a zone, enter a command like this:
maas $PROFILE zone delete $ZONE_NAME
How to assign a machine to an availability zone
To assign a machine to a zone, first retrieve the machine’s system ID like this:
maas PROFILE machines read | jq '.[] | .hostname, .system_id'
Then enter the following command, using the system ID you just retrieved:
maas admin machine update $SYSTEM_ID zone=$ZONE_NAME
How to allocate a machine in a particular zone
Allocating a machine in a particular zone can only be done via the MAAS CLI.
To deploy in a particular zone, call the acquire
method in the region-controller API <region-controller-api> as before, but pass the zone
parameter with the name of the zone. This method will allocate a machine in that zone, or fail with an HTTP 409 (“conflict”) error if the zone has no machines available that match your request.
Alternatively, you may want to request a machine that is not in a particular zone or one that is not in any of several zones. To do that, specify the not_in_zone
parameter to acquire
. This parameter takes a list of zone names; the allocated machine will not be in any of them. Again, if that leaves no machines available that match your request, the call will return a “conflict” error.
It is possible, though not usually useful, to combine the zone
and not_in_zone
parameters. If your choice for zone
is also present in not_in_zone
, no machine will ever match your request. Or if it’s not, then the not_in_zone
values will not affect the result of the call at all.