Make sure node_ip is set if node is in etcd group (#6719)

pull/6693/head
Florent Monbillard 2020-09-18 20:14:27 -04:00 committed by GitHub
parent e1265b2e7b
commit 5989680967
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,8 @@
assert: assert:
that: node_ip is defined and node_ip | length > 0 that: node_ip is defined and node_ip | length > 0
msg: "Etcd node ip is not set !" msg: "Etcd node ip is not set !"
when:
- inventory_hostname in groups['etcd']
- name: Lookup etcd member id - name: Lookup etcd member id
shell: "{{ bin_dir }}/etcdctl member list | grep {{ node_ip }} | cut -d, -f1" shell: "{{ bin_dir }}/etcdctl member list | grep {{ node_ip }} | cut -d, -f1"