restart.yml 537 B

12345678910111213141516171819
  1. ---
  2. - include: validate_restart.yml
  3. - name: Restart masters
  4. hosts: oo_masters_to_config
  5. vars:
  6. openshift_master_ha: "{{ groups.oo_masters_to_config | length > 1 }}"
  7. serial: 1
  8. handlers:
  9. - include: ../../../roles/openshift_master/handlers/main.yml
  10. static: yes
  11. roles:
  12. - openshift_facts
  13. post_tasks:
  14. - include: restart_hosts.yml
  15. when: openshift_rolling_restart_mode | default('services') == 'system'
  16. - include: restart_services.yml
  17. when: openshift_rolling_restart_mode | default('services') == 'services'