diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-08-28 13:13:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-28 13:13:05 -0400 |
commit | ca5ebcbb4ee01841ca415df3c5afc61c192e2df2 (patch) | |
tree | 70c6f0eb0825b79bb50be62683260fcf10b0c285 /playbooks/common | |
parent | 60b91e4ea7289e49dbd3b3a5539fb54de0e66c7e (diff) | |
parent | 51645eab599b0b23c582e22a9e84ce9423362ab1 (diff) | |
download | openshift-ca5ebcbb4ee01841ca415df3c5afc61c192e2df2.tar.gz openshift-ca5ebcbb4ee01841ca415df3c5afc61c192e2df2.tar.bz2 openshift-ca5ebcbb4ee01841ca415df3c5afc61c192e2df2.tar.xz openshift-ca5ebcbb4ee01841ca415df3c5afc61c192e2df2.zip |
Merge pull request #4570 from rhcarvalho/adhoc-check-runner-misc
Add playbook to run adhoc health checks or list existing checks
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-checks/adhoc.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/playbooks/common/openshift-checks/adhoc.yml b/playbooks/common/openshift-checks/adhoc.yml new file mode 100644 index 000000000..dfcef8435 --- /dev/null +++ b/playbooks/common/openshift-checks/adhoc.yml @@ -0,0 +1,12 @@ +--- +- name: OpenShift health checks + hosts: oo_all_hosts + roles: + - openshift_health_checker + vars: + - r_openshift_health_checker_playbook_context: adhoc + post_tasks: + - name: Run health checks + action: openshift_health_check + args: + checks: '{{ openshift_checks | default([]) }}' |