Use synchronize module

This commit is contained in:
rongzhang 2018-09-16 10:50:56 +08:00
parent 1d4aa7abcc
commit 84c4c7dc82
6 changed files with 28 additions and 14 deletions

View file

@ -1,21 +1,25 @@
--- ---
- name: install | Copy etcd binary from download dir - name: install | Copy etcd and etcdctl binary from download dir
shell: | synchronize:
rsync -piu "{{ local_release_dir }}/etcd-{{ etcd_version }}-linux-amd64/etcd" "{{ bin_dir }}/etcd" src: "{{ local_release_dir }}/etcd-{{ etcd_version }}-linux-amd64/{{ item }}"
rsync -piu "{{ local_release_dir }}/etcd-{{ etcd_version }}-linux-amd64/etcdctl" "{{ bin_dir }}/etcdctl" dest: "{{ bin_dir }}/{{ item }}"
compress: no
perms: yes
owner: no
group: no
changed_when: false changed_when: false
delegate_to: "{{ inventory_hostname }}"
with_items:
- "etcd"
- "etcdctl"
when: etcd_cluster_setup when: etcd_cluster_setup
- name: install | Set etcd binary permissions - name: install | Set etcd and etcdctl binary permissions
file: file:
path: "{{ bin_dir }}/etcd" path: "{{ bin_dir }}/{{ item }}"
mode: "0755" mode: "0755"
state: file state: file
with_items:
- "etcd"
- "etcdctl"
when: etcd_cluster_setup when: etcd_cluster_setup
- name: install | Set etcdctl binary permissions
file:
path: "{{ bin_dir }}/etcdctl"
mode: "0755"
state: file
when: etcd_cluster_setup

View file

@ -10,8 +10,15 @@
when: kube_encrypt_secret_data when: kube_encrypt_secret_data
- name: install | Copy kubectl binary from download dir - name: install | Copy kubectl binary from download dir
command: rsync -piu "{{ local_release_dir }}/hyperkube" "{{ bin_dir }}/kubectl" synchronize:
src: "{{ local_release_dir }}/hyperkube"
dest: "{{ bin_dir }}/kubectl"
compress: no
perms: yes
owner: no
group: no
changed_when: false changed_when: false
delegate_to: "{{ inventory_hostname }}"
tags: tags:
- hyperkube - hyperkube
- kubectl - kubectl

View file

View file

@ -11,6 +11,7 @@
src: "{{ local_release_dir }}/kubeadm" src: "{{ local_release_dir }}/kubeadm"
dest: "{{ bin_dir }}/kubeadm" dest: "{{ bin_dir }}/kubeadm"
compress: no compress: no
perms: yes
owner: no owner: no
group: no group: no
delegate_to: "{{ inventory_hostname }}" delegate_to: "{{ inventory_hostname }}"

View file

View file

@ -5,8 +5,10 @@
src: "{{ local_release_dir }}/hyperkube" src: "{{ local_release_dir }}/hyperkube"
dest: "{{ bin_dir }}/kubelet" dest: "{{ bin_dir }}/kubelet"
compress: no compress: no
perms: yes
owner: no owner: no
group: no group: no
delegate_to: "{{ inventory_hostname }}"
tags: tags:
- hyperkube - hyperkube
- upgrade - upgrade