scale_computing.hypercore.vm_clone module – Handles cloning of the VM
Note
This module is part of the scale_computing.hypercore collection (version 1.6.0).
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install scale_computing.hypercore
.
To use it in a playbook, specify: scale_computing.hypercore.vm_clone
.
New in scale_computing.hypercore 1.0.0
Synopsis
Use scale_computing.hypercore.vm_clone to clone a specified virtual machine.
Parameters
Parameter |
Comments |
---|---|
Configuration to be used by cloud-init (Linux) or cloudbase-init (Windows). When non-empty will create an extra ISO device attached to VirDomain as a NoCloud datasource. There has to be cloud-config comment present at the beginning of cloud_init file or raw yaml. Default: |
|
Configuration meta-data to be used by cloud-init (Linux) or cloudbase-init (Windows). Valid YAML syntax. |
|
Configuration user-data to be used by cloud-init (Linux) or cloudbase-init (Windows). Valid YAML syntax. |
|
Scale Computing HyperCore instance information. |
|
Select login method. If not set, the value of the Value local - username/password is verified by the HyperCore server (the local users). Value oidc - username/password is verified by the configured OIDC provider. Choices:
|
|
The HyperCore instance URL. If not set, the value of the For example “https://10.1.2.3:443”. |
|
Password used for authentication. If not set, the value of the |
|
Timeout in seconds for the connection with the Scale Computing HyperCore API instance. If not set, the value of the |
|
Username used for authentication. If not set, the value of the |
|
Allows keeping same MAC addresses as in original VM. Choices:
|
|
Allows cloning VM from a specific snapshot using snapshot label. |
|
Allows cloning VM from a specific snapshot using snapshot uuid. |
|
Name of the source virtual machine, to be cloned. Used to identify selected virtual machine by name. |
|
Virtual machine tags. Used to group virtual machine. |
|
Name of the VM clone. Used to identify a clone of the virtual machine by name. |
Notes
Note
check_mode
is not supported.
Examples
- name: Clone VM
scale_computing.hypercore.vm_clone:
vm_name: demo-vm-clone
source_vm_name: demo-vm
cloud_init:
user_data: "{{ lookup('file', 'cloud-init-user-data-example.yml') }}"
meta_data: |
# Content for cloud-init meta-data (or user-data) can be inline too.
tags:
- test
- tag
register: output
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Return message. Returned: success Sample: |