Browse Source

fix copy etcdctl retries (#10634)

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

2
roles/etcdctl_etcdutl/tasks/main.yml

@ -9,7 +9,7 @@
- etcdutl
register: etcdxtl_install_result
until: etcdxtl_install_result.rc == 0
retries: "{{ etcd_retries }}"
retries: 4
delay: "{{ retry_stagger | random + 3 }}"
changed_when: false
when: container_manager == "docker"

Loading…
Cancel
Save