verify_nodes_running.yml 319 B

12345678910111213
  1. ---
  2. - name: Verify node processes
  3. hosts: oo_nodes_to_config
  4. roles:
  5. - openshift_facts
  6. - openshift_docker_facts
  7. tasks:
  8. - name: Ensure Node is running
  9. service:
  10. name: "{{ openshift.common.service_type }}-node"
  11. state: started
  12. enabled: yes
  13. when: openshift.common.is_containerized | bool