adhoc.yml 1.0 KB

1234567891011121314151617181920212223242526
  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. gather_facts: false
  15. roles:
  16. - openshift_health_checker
  17. vars:
  18. - r_openshift_health_checker_playbook_context: adhoc
  19. pre_tasks:
  20. - name: List known health checks
  21. action: openshift_health_check
  22. when: openshift_checks is undefined or not openshift_checks
  23. - import_playbook: ../init/main.yml
  24. - import_playbook: private/adhoc.yml