restart.yml 348 B

1234567891011
  1. ---
  2. - name: Restart masters
  3. hosts: oo_masters_to_config
  4. vars:
  5. openshift_master_ha: "{{ groups.oo_masters_to_config | length > 1 }}"
  6. serial: 1
  7. tasks:
  8. - include: restart_hosts.yml
  9. when: openshift.common.rolling_restart_mode == 'system'
  10. - include: restart_services.yml
  11. when: openshift.common.rolling_restart_mode == 'services'