mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
adds hint about simplestreams protocol (#48959)
This commit is contained in:
parent
c3d579c52a
commit
e42fb44995
1 changed files with 4 additions and 3 deletions
|
@ -62,8 +62,9 @@ options:
|
||||||
"mode": "pull",
|
"mode": "pull",
|
||||||
"server": "https://images.linuxcontainers.org",
|
"server": "https://images.linuxcontainers.org",
|
||||||
"protocol": "lxd",
|
"protocol": "lxd",
|
||||||
"alias": "ubuntu/xenial/amd64" }).
|
"alias": "ubuntu/xenial/amd64" }).'
|
||||||
See U(https://github.com/lxc/lxd/blob/master/doc/rest-api.md#post-1)'
|
- 'See U(https://github.com/lxc/lxd/blob/master/doc/rest-api.md#post-1) for complete API documentation.'
|
||||||
|
- 'Note that C(protocol) accepts two choices: C(lxd) or C(simplestreams)'
|
||||||
required: false
|
required: false
|
||||||
state:
|
state:
|
||||||
choices:
|
choices:
|
||||||
|
@ -151,7 +152,7 @@ EXAMPLES = '''
|
||||||
type: image
|
type: image
|
||||||
mode: pull
|
mode: pull
|
||||||
server: https://images.linuxcontainers.org
|
server: https://images.linuxcontainers.org
|
||||||
protocol: lxd
|
protocol: lxd # if you get a 404, try setting protocol: simplestreams
|
||||||
alias: ubuntu/xenial/amd64
|
alias: ubuntu/xenial/amd64
|
||||||
profiles: ["default"]
|
profiles: ["default"]
|
||||||
wait_for_ipv4_addresses: true
|
wait_for_ipv4_addresses: true
|
||||||
|
|
Loading…
Reference in a new issue