使用ansible shell任务执行的virsh命令对VM不可见

时间:2019-12-29 20:12:43

标签: shell ansible virsh

我试图在关闭主机之前保存所有正在运行的VM的状态。

virsh save <domain-name> <filetosave>

这个想法是当我再次带回主机时恢复虚拟机。

我正在使用ansible virt模块来确定正在运行的VM。没有命令可用于使用virt模块保存虚拟机,因此无法使用如下所示的shell模块

 tasks:

  - name: Gathering Facts
    setup:

  # Listing VMs
  - name: list all VMs
    virt:
      command: list_vms
    register: all_vms

  - name: list only running VMs
    virt:
      command: list_vms
      state: running
    register: running_vms

  - name: Print All VM'state
    debug:
      msg: |
        VM's: {{ all_vms.list_vms }},
        Active VM's: {{ running_vms.list_vms }}

  - name: Save Running VM's
    shell: >
      virsh save {{ item }} ~/.mykvm/{{item}}.save
    args:
      chdir: /home/sharu
      executable: /bin/bash
    loop:
      "{{ running_vms.list_vms }}"
    register: save_result
  - debug:
      var: save_result

输出:

TASK [list all VMs] 
*********
ok: [192.168.0.113]

TASK [list only running VMs] 
*********
ok: [192.168.0.113]

TASK [Print All VM'state] 
*********
ok: [192.168.0.113] => {
    "msg": "VM's: [u'win10-2', u'ubuntu18.04', u'ubuntu18.04-2', u'win10'],\nActive VM's: [u'win10-2']\n"
}

TASK [Save Running VM's] 
*********
failed: [192.168.0.113] (item=win10-2) => {"ansible_loop_var": "item", "changed": true, "cmd": "virsh save win10-2 ~/.mykvm/win10-2.save\n", "delta": "0:00:00.101916", "end": "2019-12-30 01:19:32.205584", "item": "win10-2", "msg": "non-zero return code", "rc": 1, "start": "2019-12-30 01:19:32.103668", "stderr": "error: failed to get domain 'win10-2'", "stderr_lines": ["error: failed to get domain 'win10-2'"], "stdout": "", "stdout_lines": []}

PLAY RECAP 
******************
192.168.0.113              : ok=5    changed=0    unreachable=0    failed=1    skipped=0    rescued=0    ignored=0

请注意,virt模块能够获取有关正在运行的域(VM)的信息,但是shell命令无法获取域名。看来对于Ansible的shell任务来说,虚拟机是不可见的

为了进一步调试,我执行了下面的Ansible ad-hoc命令,但结果为空

$ ansible -i ../hosts.ini RIG3600 -m shell -a "virsh list --all"
192.168.0.113 | CHANGED | rc=0 >>
 Id   Name   State
--------------------

同一命令在Linux shell中可以正常工作

$ virsh list --all

 Id   Name            State
--------------------------------
 3    win10-2         running
 -    ubuntu18.04     shut off
 -    ubuntu18.04-2   shut off
 -    win10           shut off

Am使用Ansible版本2.8.3  不确定我在这里是否缺少任何东西,我们将不胜感激。

1 个答案:

答案 0 :(得分:0)

virt模块as documented默认使用libvirt URI qemu:///system

另一方面,virsh命令以非root用户身份运行时,默认为qemu:///session

换句话说,您的virsh命令与virt任务不在同一个libvirt实例中。

您可以使用virsh-c)选项向--connect命令提供显式URI:

virsh -c qemu:///system ...

或通过设置LIBVIRT_DEFAULT_URI环境变量:

  - name: Save Running VM's
    shell: >
      virsh save {{ item }} ~/.mykvm/{{item}}.save
    args:
      chdir: /home/sharu
      executable: /bin/bash
    environment:
      LIBVIRT_DEFAULT_URI: qemu:///system
    loop:
      "{{ running_vms.list_vms }}"
    register: save_result

(您也可以在剧本中设置environment而不是在单个任务上进行设置。