adhoc.yml 676 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - name: OpenShift Health Checks
  3. hosts: oo_all_hosts
  4. roles:
  5. - lib_openshift
  6. - openshift_health_checker
  7. vars:
  8. - r_openshift_health_checker_playbook_context: adhoc
  9. post_tasks:
  10. - name: Get cluster resources
  11. delegate_to: "{{ groups.oo_first_master.0 }}"
  12. run_once: True
  13. oc_obj:
  14. state: list
  15. kind: "{{ item }}"
  16. all_namespaces: True
  17. register: resources
  18. with_items:
  19. - nodes
  20. - pods
  21. - services
  22. - endpoints
  23. - routes
  24. - clusternetworks
  25. - hostsubnets
  26. - netnamespaces
  27. - name: Run health checks (adhoc)
  28. action: openshift_health_check
  29. args:
  30. checks: '{{ openshift_checks | default([]) }}'