Browse Source

Fix issue with etcd arm host installation case (#4589)

Use host_architecture variable.
pull/4655/head
gitareest 5 years ago
committed by Kubernetes Prow Robot
parent
commit
6ca2019002
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/etcd/tasks/install_host.yml

2
roles/etcd/tasks/install_host.yml

@ -1,7 +1,7 @@
---
- name: install | Copy etcd and etcdctl binary from download dir
copy:
src: "{{ local_release_dir }}/etcd-{{ etcd_version }}-linux-amd64/{{ item }}"
src: "{{ local_release_dir }}/etcd-{{ etcd_version }}-linux-{{ host_architecture }}/{{ item }}"
dest: "{{ bin_dir }}/{{ item }}"
mode: 0755
remote_src: yes

Loading…
Cancel
Save