one_image – Manages OpenNebula images¶
New in version 2.6.
Parameters¶
Examples¶
# Fetch the IMAGE by id
- one_image:
    id: 45
  register: result
# Print the IMAGE properties
- debug:
    msg: result
# Rename existing IMAGE
- one_image:
    id: 34
    state: renamed
    new_name: bar-image
# Disable the IMAGE by id
- one_image:
    id: 37
    enabled: no
# Enable the IMAGE by name
- one_image:
    name: bar-image
    enabled: yes
# Clone the IMAGE by name
- one_image:
    name: bar-image
    state: cloned
    new_name: bar-image-clone
  register: result
# Delete the IMAGE by id
- one_image:
    id: '{{ result.id }}'
    state: absent
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Milan Ilic (@ilicmilan)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
