mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 18:50:21 -07:00
ovirt_vms: Clarified graphical_console arguments. (#39455)
For protocol, it should be a list and all of the values are expected to be lowercase. An example is also added to show how to add both Spice and VNC consoles to a VM.
This commit is contained in:
parent
0d1daf4de8
commit
65c19c3629
1 changed files with 11 additions and 1 deletions
|
@ -538,7 +538,7 @@ options:
|
||||||
- "Assign graphical console to the virtual machine."
|
- "Assign graphical console to the virtual machine."
|
||||||
- "Graphical console is a dictionary which can have following values:"
|
- "Graphical console is a dictionary which can have following values:"
|
||||||
- "C(headless_mode) - If I(true) disable the graphics console for this virtual machine."
|
- "C(headless_mode) - If I(true) disable the graphics console for this virtual machine."
|
||||||
- "C(protocol) - Graphical protocol, one of I(VNC), I(SPICE), or both."
|
- "C(protocol) - Graphical protocol, a list of I(spice), I(vnc), or both."
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
notes:
|
notes:
|
||||||
- If VM is in I(UNASSIGNED) or I(UNKNOWN) state before any operation, the module will fail.
|
- If VM is in I(UNASSIGNED) or I(UNKNOWN) state before any operation, the module will fail.
|
||||||
|
@ -809,6 +809,16 @@ EXAMPLES = '''
|
||||||
usb_support: True
|
usb_support: True
|
||||||
serial_console: True
|
serial_console: True
|
||||||
quota_id: "{{ ovirt_quotas[0]['id'] }}"
|
quota_id: "{{ ovirt_quotas[0]['id'] }}"
|
||||||
|
|
||||||
|
- name: Create a VM that has the console configured for both Spice and VNC
|
||||||
|
ovirt_vms:
|
||||||
|
name: myvm
|
||||||
|
template: mytemplate
|
||||||
|
cluster: mycluster
|
||||||
|
graphical_console:
|
||||||
|
protocol:
|
||||||
|
- spice
|
||||||
|
- vnc
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue