adhoc.yml 1.0 KB

12345678910111213141516171819202122232425
  1. ---
  2. # NOTE: ideally this would be just part of a single play in
  3. # private/adhoc.yml that lists the existing checks when
  4. # openshift_checks is not set or run the requested checks. However, to actually
  5. # run the checks we need to have the included dependencies to run first and that
  6. # takes time. To speed up listing checks, we use this separate play that runs
  7. # before the include of dependencies to save time and improve the UX.
  8. - name: OpenShift health checks
  9. # NOTE: though the openshift_checks variable could be potentially defined on
  10. # individual hosts while not defined for localhost, we do not support that
  11. # usage. Running this play only in localhost speeds up execution.
  12. hosts: localhost
  13. connection: local
  14. roles:
  15. - openshift_health_checker
  16. vars:
  17. - r_openshift_health_checker_playbook_context: adhoc
  18. pre_tasks:
  19. - name: List known health checks
  20. action: openshift_health_check
  21. when: openshift_checks is undefined or not openshift_checks
  22. - import_playbook: ../init/main.yml
  23. - import_playbook: private/adhoc.yml