community.vmware.vmware_guest_cross_vc_clone 模块 – 跨 vCenter VM/模板克隆
注意
此模块是 community.vmware 集合 (版本 5.2.0) 的一部分。
如果您正在使用 ansible
包,则您可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.vmware
。
要在剧本中使用它,请指定: community.vmware.vmware_guest_cross_vc_clone
。
概要
此模块可用于跨 vCenter VM/模板克隆
参数
参数 |
注释 |
---|---|
目标数据存储的名称或数据存储集群。 如果指定了数据存储集群名称,我们将在此集群中找到存储 DRS 推荐的数据存储。 |
|
目标主机的名称。 |
|
目标资源池。 如果未提供,则将使用目标主机的父资源池。 |
|
目标 vCenter 的主机名或 IP 地址。 |
|
目标 vCenter 的密码。 |
|
在目标 vCenter 中建立连接的端口。 默认: |
|
目标 vCenter 的用户名。 |
|
指示是否需要对目标 vCenter 进行证书验证的参数。 选项
|
|
目标文件夹,部署克隆 VM 的绝对路径。 示例 文件夹:vm 文件夹:ha-datacenter/vm 文件夹:/datacenter1/vm |
|
克隆 VM 的名称。 |
|
vSphere vCenter 或 ESXi 服务器的主机名或 IP 地址。 如果任务中未指定该值,则将改用环境变量 |
|
指定新虚拟机是否应标记为模板。 选项
|
|
vSphere vCenter 或 ESXi 服务器的密码。 如果任务中未指定该值,则将改用环境变量 |
|
将接收所有 HTTPS 请求并转发它们的 HTTP 代理的端口。 如果任务中未指定该值,则将改用环境变量 |
|
已部署虚拟机的状态。 如果设置为 如果设置为 如果设置为 如果设置为 选项
|
|
超时时间(秒)。达到超时时间后,模块将失败。 默认值: |
|
是否使用VMware实例UUID而不是BIOS UUID。 选项
|
|
vSphere vCenter或ESXi服务器的用户名。 如果任务中未指定该值,则将改用环境变量 |
|
当SSL证书无效时允许连接。当证书不受信任时,将其设置为 如果任务中未指定该值,则将改用环境变量 选项
|
注释
注意
所有模块都需要API写入访问权限,因此在免费ESXi许可证上不受支持。
所有变量和VMware对象名称都区分大小写。
示例
# Clone template
- name: clone a template across VC
community.vmware.vmware_guest_cross_vc_clone:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
name: "test_vm1"
destination_vm_name: "cloned_vm_from_template"
destination_vcenter: '{{ destination_vcenter_hostname }}'
destination_vcenter_username: '{{ destination_vcenter_username }}'
destination_vcenter_password: '{{ destination_vcenter_password }}'
destination_vcenter_port: '{{ destination_vcenter_port }}'
destination_vcenter_validate_certs: '{{ destination_vcenter_validate_certs }}'
destination_host: '{{ destination_esxi }}'
destination_datastore: '{{ destination_datastore }}'
destination_vm_folder: '{{ destination_vm_folder }}'
state: present
register: cross_vc_clone_from_template
- name: clone a VM across VC
community.vmware.vmware_guest_cross_vc_clone:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: "{{ vcenter_password }}"
name: "test_vm1"
destination_vm_name: "cloned_vm_from_vm"
destination_vcenter: '{{ destination_vcenter_hostname }}'
destination_vcenter_username: '{{ destination_vcenter_username }}'
destination_vcenter_password: '{{ destination_vcenter_password }}'
destination_host: '{{ destination_esxi }}'
destination_datastore: '{{ destination_datastore }}'
destination_vm_folder: '{{ destination_vm_folder }}'
state: poweredon
register: cross_vc_clone_from_vm
- name: check_mode support
community.vmware.vmware_guest_cross_vc_clone:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: "{{ vcenter_password }}"
name: "test_vm1"
destination_vm_name: "cloned_vm_from_vm"
destination_vcenter: '{{ destination_vcenter_hostname }}'
destination_vcenter_username: '{{ destination_vcenter_username }}'
destination_vcenter_password: '{{ destination_vcenter_password }}'
destination_host: '{{ destination_esxi }}'
destination_datastore: '{{ destination_datastore }}'
destination_vm_folder: '{{ destination_vm_folder }}'
check_mode: true
返回值
常见的返回值已在此处记录,以下是此模块特有的字段
键 |
描述 |
---|---|
关于虚拟机的元数据 返回:始终 示例: |