2017-05-03 117 views
-1

我想在Ansible的ESXi服務器上自動創建虛擬機。我應該在VMWare ESXi服務器上安裝pysphere模塊。但是這個服務器不使用apt,yum或者易於安裝。即使我嘗試使用shell命令,也會遇到與ESXi服務器上的依賴關係相關的錯誤。有沒有可用的解決方法?將Ansible與VMware ESXi服務器配合使用

回答

1

我應該到VMware的ESXi服務器

你爲什麼這麼認爲上安裝pysphere模塊?

通常您會從Ansible控制主機(本地主機)調用VM配置模塊vsphere_guest,因此pysphere應安裝在本地主機上,而不是ESXi服務器上。

實施例:

- hosts: localhost 
    tasks: 
    - vsphere_guest: 
     vcenter_hostname: vcenter.mydomain.local 
     username: myuser 
     password: mypass 
     guest: newvm001 
     state: absent 
     force: yes 
相關問題