Kaynağa Gözat

openshift_checks: ignore docker_storage check if only CRIO is used

Vadim Rutkovsky 6 yıl önce
ebeveyn
işleme
33e7864ba9

+ 3 - 0
roles/openshift_health_checker/action_plugins/openshift_health_check.py

@@ -70,6 +70,9 @@ class ActionModule(ActionBase):
         result["checks"] = check_results = {}
 
         user_disabled_checks = normalize(task_vars.get('openshift_disable_check', []))
+        # Automatically add docker_storage if only CRIO is used, as docker service would be stopped
+        if task_vars.get('openshift_use_crio_only'):
+            user_disabled_checks.append('docker_storage')
 
         for name in resolved_checks:
             display.banner("CHECK [{} : {}]".format(name, task_vars["ansible_host"]))