summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-master/restart.yml
blob: 6fec346c323ca85d5f03e54b3288b693ef258915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
- include: validate_restart.yml

- name: Restart masters
  hosts: oo_masters_to_config
  vars:
    openshift_master_ha: "{{ groups.oo_masters_to_config | length > 1 }}"
  serial: 1
  handlers:
  - include: roles/openshift_master/handlers/main.yml
    static: yes
  roles:
  - openshift_facts
  post_tasks:
  - include: restart_hosts.yml
    when: openshift_rolling_restart_mode | default('services') == 'system'

  - include: restart_services.yml
    when: openshift_rolling_restart_mode | default('services') == 'services'