Browse Source

fix etcdctl copy operation in crio (#10242)

Signed-off-by: bo.jiang <bo.jiang@daocloud.io>
pull/10258/head
ERIK 1 year ago
committed by GitHub
parent
commit
2aafab6c19
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
  1. 5
      roles/etcdctl/tasks/main.yml

5
roles/etcdctl/tasks/main.yml

@ -42,7 +42,10 @@
when: container_manager == "docker"
- name: Copy etcdctl script to host
shell: "{{ bin_dir }}/nerdctl cp \"$({{ bin_dir }}/crictl ps -q --image {{ etcd_image_repo }}:{{ etcd_image_tag }})\":/usr/local/bin/etcdctl {{ etcd_data_dir }}/etcdctl"
shell: >-
etcd_ctr_id="$({{ bin_dir }}/crictl ps -q --image {{ etcd_image_repo }}:{{ etcd_image_tag }})" &&
etcd_ctr_pid="$({{ bin_dir }}/crictl inspect --output go-template --template '{{ '{{' }} .info.pid {{ '}}' }}' ${etcd_ctr_id})" &&
cp /proc/${etcd_ctr_pid}/root/usr/local/bin/etcdctl {{ etcd_data_dir }}/etcdctl
when: container_manager in ['crio', 'containerd']
- name: Copy etcdctl to {{ bin_dir }}

Loading…
Cancel
Save