mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix invalid YAML in document
This commit is contained in:
parent
a0bf88f60a
commit
d26c84d620
1 changed files with 12 additions and 7 deletions
|
@ -39,7 +39,8 @@ options:
|
|||
required: false
|
||||
config:
|
||||
description:
|
||||
- The config for the container (e.g. '{"limits.cpu": "2"}').
|
||||
- >
|
||||
The config for the container (e.g. {"limits.cpu": "2"}).
|
||||
See https://github.com/lxc/lxd/blob/master/doc/rest-api.md#post-1
|
||||
- If the container already exists and its "config" value in metadata
|
||||
obtained from
|
||||
|
@ -52,8 +53,9 @@ options:
|
|||
required: false
|
||||
devices:
|
||||
description:
|
||||
- The devices for the container
|
||||
(e.g. '{ "rootfs": { "path": "/dev/kvm", "type": "unix-char" }').
|
||||
- >
|
||||
The devices for the container
|
||||
(e.g. { "rootfs": { "path": "/dev/kvm", "type": "unix-char" }).
|
||||
See https://github.com/lxc/lxd/blob/master/doc/rest-api.md#post-1
|
||||
required: false
|
||||
ephemeral:
|
||||
|
@ -63,10 +65,13 @@ options:
|
|||
required: false
|
||||
source:
|
||||
description:
|
||||
- The source for the container
|
||||
(e.g. '{ "type": "image", "mode": "pull",
|
||||
"server": "https://images.linuxcontainers.org", "protocol": "lxd",
|
||||
"alias": "ubuntu/xenial/amd64" }').
|
||||
- >
|
||||
The source for the container
|
||||
(e.g. { "type": "image",
|
||||
"mode": "pull",
|
||||
"server": "https://images.linuxcontainers.org",
|
||||
"protocol": "lxd",
|
||||
"alias": "ubuntu/xenial/amd64" }).
|
||||
See https://github.com/lxc/lxd/blob/master/doc/rest-api.md#post-1
|
||||
required: false
|
||||
state:
|
||||
|
|
Loading…
Reference in a new issue