Ansible - 获取不打印的 VSphere VM 事实
Ansible - Getting VSphere VM facts not printing
我是 运行 ansible 1.9.1,这是我的剧本。问题是 playbook 运行时没有任何问题,但只是 return VM 没有按预期运行。
- hosts: 127.0.0.1
connection: local
user: jenkins
sudo: false
gather_facts: false
serial: 1
tasks:
- vsphere_guest:
vcenter_hostname: vcenter.local
username: user
password: pass
guest: vm1
vmware_guest_facts: yes
运行 使用 -vvv 查看输出的剧本。
我是 运行 ansible 1.9.1,这是我的剧本。问题是 playbook 运行时没有任何问题,但只是 return VM 没有按预期运行。
- hosts: 127.0.0.1
connection: local
user: jenkins
sudo: false
gather_facts: false
serial: 1
tasks:
- vsphere_guest:
vcenter_hostname: vcenter.local
username: user
password: pass
guest: vm1
vmware_guest_facts: yes
运行 使用 -vvv 查看输出的剧本。