在设置3个VM的过程中,我试图跨所有VM复制文件。但是copy命令需要8分钟或更长时间才能复制一个简单的json文件(以kb为单位的文件)。.
这是我的戏
- name: Copy Test file to All VMs
hosts: allhost
remote_user: "testuser"
gather_facts: no
tasks:
- name: Copy Test File to all VMs
copy:
src: '{{ item.path }}'
dest: /home/test/
owner: test
group: test
mode: 0600
ignore_errors: yes
become: yes
with_items: "{{ hostvars['localhost']['files'] }}"
tags:
- TestDeployment
有人可以帮助我找到我做错了什么。或者我应该使用其他ansible模块。