blob: f3600d856546b38bb701eb3152a3e44f25e848b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
---
- name: check for etcd existed
stat:
path: "{{ etcd_dir }}/etcd"
ignore_errors: yes
register: etcdexisted
- name: download etcd
get_url:
url={{ etcd_download_url }}
dest=/opt/{{ etcd_tarball }}
when:
- etcdexisted.stat.exists is undefined or etcdexisted.stat.exists == false
- name: extract the etcd tarball
unarchive:
src=/opt/{{ etcd_tarball }}
dest=/opt/
when:
- etcdexisted.stat.exists is undefined or etcdexisted.stat.exists == false
- name: Check if etcd is running
shell: ps aux | grep etcd | grep -v grep
ignore_errors: true
register: service_etcd_status
- name: run etcd daemon service
shell: ETCD_UNSUPPORTED_ARCH=arm64 nohup ./etcd --advertise-client-urls http://{{ etcd_host }}:{{ etcd_port }} --listen-client-urls http://{{ etcd_host }}:{{ etcd_port }} -listen-peer-urls http://{{ etcd_host }}:{{ etcd_peer_port }} &>>etcd.log &
become: true
args:
chdir: "{{ etcd_dir }}"
when: service_etcd_status.rc != 0
- name: check etcd cluster health
shell: ./etcdctl --endpoints http://{{ etcd_host }}:{{ etcd_port }} cluster-health
become: true
ignore_errors: true
args:
chdir: "{{ etcd_dir }}"
|