Browse Source

Clean up openshift-checks playbooks

- The referenced issue was closed, seems like a wontfix. Just use the
old syntax and make no noise about it.
- Remove inconsistent use of tags: if tags are passed in the command
line, there is no point in evaluating groups if the checks won't be run
anyway.
- Remove temporal comment, easy to get out of sync.
Rodolfo Carvalho 7 years ago
parent
commit
e61819d89f

+ 1 - 4
playbooks/common/openshift-checks/health.yml

@@ -1,8 +1,5 @@
 ---
-# openshift_health_checker depends on openshift_version which now requires group eval.
 - include: ../openshift-cluster/evaluate_groups.yml
-  tags:
-  - always
 
 - name: Run OpenShift health checks
   hosts: OSEv3
@@ -11,6 +8,6 @@
   vars:
   - r_openshift_health_checker_playbook_context: "health"
   post_tasks:
-  - action: openshift_health_check  # https://github.com/ansible/ansible/issues/20513
+  - action: openshift_health_check
     args:
       checks: ['@health']

+ 1 - 4
playbooks/common/openshift-checks/pre-install.yml

@@ -1,8 +1,5 @@
 ---
-# openshift_health_checker depends on openshift_version which now requires group eval.
 - include: ../openshift-cluster/evaluate_groups.yml
-  tags:
-  - always
 
 - hosts: OSEv3
   name: run OpenShift pre-install checks
@@ -11,6 +8,6 @@
   vars:
   - r_openshift_health_checker_playbook_context: "pre-install"
   post_tasks:
-  - action: openshift_health_check  # https://github.com/ansible/ansible/issues/20513
+  - action: openshift_health_check
     args:
       checks: ['@preflight']