summaryrefslogtreecommitdiffstats
path: root/playbooks/openshift-etcd/private/restart.yml
blob: 0751480e274d9980529af13e7a0fec13fd40b934 (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:
    - include_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:
    - include_role:
        name: etcd
        tasks_from: restart.yml
      when:
        - g_etcd_certificates_expired | default(false) | bool