Browse Source

Workaround etcdctl not yet being installed (#797)

workaround case for etcdctl not yet being installed, only allow for return code of 0 (no error)
pull/813/head
Spencer Smith 8 years ago
committed by GitHub
parent
commit
b63d900625
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/etcd/tasks/pre_upgrade.yml

2
roles/etcd/tasks/pre_upgrade.yml

@ -48,4 +48,4 @@
{{ bin_dir }}/etcdctl --no-sync --peers={{ etcd_access_addresses | regex_replace('https','http') }} member list |
awk -F"[: =]" '{print "{{ bin_dir }}/etcdctl --peers={{ etcd_access_addresses | regex_replace('https','http') }} member update "$1" https:"$7":"$8}' | bash
run_once: true
when: 'etcd_member_list is defined and "http://" in etcd_member_list.stdout'
when: 'etcd_member_list.rc == 0 and "http://" in etcd_member_list.stdout'
Loading…
Cancel
Save