Replace the raw rsync command with the synchronize module

This commit is contained in:
guenhter 2017-11-14 11:35:41 +01:00
parent f4feb17629
commit fff48d24ea

View file

@ -7,8 +7,13 @@
- kubeadm
- name: install | Copy kubeadm binary from download dir
command: rsync -piu "{{ local_release_dir }}/kubeadm" "{{ bin_dir }}/kubeadm"
changed_when: false
synchronize:
src: "{{ local_release_dir }}/kubeadm"
dest: "{{ bin_dir }}/kubeadm"
compress: no
owner: no
group: no
delegate_to: "{{ inventory_hostname }}"
when: kubeadm_enabled
tags:
- kubeadm