前提・実現したいこと
VMwareモジュール vmware_export_ovfを使用して仮想ディスクがthickで構成された仮想マシンをovfエクスポートしたい
発生している問題・エラーメッセージ
"msg": "get exception: The read operation timed out" でfailedとなります。
該当のソースコード
playbookの内容
1- hosts: localhost 2 gather_facts: false 3 vars_files: 4 - vars_vmware.yml 5 vars_prompt: 6 - name: "vm_name" 7 prompt: "Please enter VirtualMachine Name" 8 private: no 9 tasks: 10 - name: VM OVF export 11 vmware_export_ovf: 12 validate_certs: no 13 hostname: '{{ vcenter_hostname }}' 14 username: '{{ vcenter_username }}' 15 password: '{{ vcenter_password }}' 16 datacenter: '{{ vcenter_datacenter }}' 17 name: '{{ vm_name }}' 18 export_with_images: no 19 export_dir: /backup/system_backup/vm/ 20 delegate_to: localhost 21
試したこと
仮想ディスクがthinで構成された仮想マシンの場合は成功しています。
補足情報(FW/ツールのバージョンなど)
■実行環境情報
ansible 2.9.10
config file = /etc/ansible/ansible.cfg
configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /usr/local/lib/python3.6/site-packages/ansible
executable location = /usr/local/bin/ansible
python version = 3.6.8 (default, Sep 26 2019, 11:57:09) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
ESXi
6.7.0 Update 2 (Build 13006603)
vCenter
6.7.0 Update 2
バージョン:6.7.0.44000
ビルド番号:16046470
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。