k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
565 B
23 lines
565 B
---
|
|
- name: Configure | Copy etcd.service systemd file
|
|
template:
|
|
src: etcd.service.j2
|
|
dest: /lib/systemd/system/etcd.service
|
|
backup: yes
|
|
when: init_system == "systemd"
|
|
notify: restart etcd
|
|
|
|
- name: Configure | Write etcd initd script
|
|
template:
|
|
src: deb-etcd.initd.j2
|
|
dest: /etc/init.d/etcd
|
|
owner: root
|
|
mode: 0755
|
|
when: init_system == "sysvinit" and ansible_os_family == "Debian"
|
|
notify: restart etcd
|
|
|
|
- name: Configure | Create etcd config file
|
|
template:
|
|
src: etcd.j2
|
|
dest: /etc/etcd.env
|
|
notify: restart etcd
|