summaryrefslogtreecommitdiffstats
path: root/playbooks/openshift-etcd/private/restart.yml
blob: a2a53651ba51f984692cf0a4ad55daf4540b1041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
- name: Restart etcd
  hosts: oo_etcd_to_config
  serial: 1
  tasks:
    - import_role:
        name: etcd
        tasks_from: restart.yml
      when:
        - not g_etcd_certificates_expired | default(false) | bool

- name: Restart etcd
  hosts: oo_etcd_to_config
  tasks:
    - import_role:
        name: etcd
        tasks_from: restart.yml
      when:
        - g_etcd_certificates_expired | default(false) | bool