main.yml 300 B

12345678910
  1. ---
  2. - name: restart node
  3. service: name={{ openshift.common.service_type }}-node state=restarted
  4. when: not (node_service_status_changed | default(false) | bool)
  5. - name: restart docker
  6. service: name=docker state=restarted
  7. - name: restart openvswitch
  8. service: name=openvswitch state=restarted