lxd Operations¶
The LXD modules manage LXD containers
Facts used in these operations: lxd.LxdContainers.
lxd.container¶
Add/remove LXD containers.
Note: does not check if an existing container is based on the specified image.
- id: name/identifier for the container
- image: image to base the container on
- present: whether the container should be present or absent
Example:
from pyinfra.operations import lxd
lxd.container(
name="Add an ubuntu container",
id="ubuntu19",
image="ubuntu:19.10",
)
Global arguments
This operation also inherits all global arguments.