Explain disk size in mount and add example (#41681)
* Explain disk size in mount and add example - Explain mount with 8GB - Add new example to start container with mount * Removed trailing whitespace
This commit is contained in:
parent
61f2791d95
commit
f85065dabf
1 changed files with 10 additions and 1 deletions
|
@ -216,7 +216,7 @@ EXAMPLES = '''
|
||||||
ostemplate: 'local:vztmpl/ubuntu-14.04-x86_64.tar.gz'
|
ostemplate: 'local:vztmpl/ubuntu-14.04-x86_64.tar.gz'
|
||||||
netif: '{"net0":"name=eth0,gw=192.168.0.1,ip=192.168.0.2/24,bridge=vmbr0"}'
|
netif: '{"net0":"name=eth0,gw=192.168.0.1,ip=192.168.0.2/24,bridge=vmbr0"}'
|
||||||
|
|
||||||
# Create new container with minimal options defining a mount
|
# Create new container with minimal options defining a mount with 8GB
|
||||||
- proxmox:
|
- proxmox:
|
||||||
vmid: 100
|
vmid: 100
|
||||||
node: uk-mc02
|
node: uk-mc02
|
||||||
|
@ -248,6 +248,15 @@ EXAMPLES = '''
|
||||||
api_host: node1
|
api_host: node1
|
||||||
state: started
|
state: started
|
||||||
|
|
||||||
|
# Start container with mount. You should enter a 90-second timeout because servers with additional disks take longer to boot.
|
||||||
|
- proxmox:
|
||||||
|
vmid: 100
|
||||||
|
api_user: root@pam
|
||||||
|
api_password: 1q2w3e
|
||||||
|
api_host: node1
|
||||||
|
state: started
|
||||||
|
timeout: 90
|
||||||
|
|
||||||
# Stop container
|
# Stop container
|
||||||
- proxmox:
|
- proxmox:
|
||||||
vmid: 100
|
vmid: 100
|
||||||
|
|
Loading…
Reference in a new issue