Browse Source

Merge pull request #8764 from jcantrill/1572493_default_ns_for_health_check

bug 1572493. Update default logging NS in openshift_health_checker
OpenShift Merge Robot 6 years ago
parent
commit
ea56d015ae

+ 1 - 1
roles/openshift_health_checker/openshift_checks/logging/logging.py

@@ -68,7 +68,7 @@ class LoggingCheck(OpenShiftCheck):
 
     def logging_namespace(self):
         """Returns the namespace in which logging is configured to deploy."""
-        return self.get_var("openshift_logging_namespace", default="logging")
+        return self.get_var("openshift_logging_namespace", default="openshift-logging")
 
     def exec_oc(self, cmd_str="", extra_args=None, save_as_name=None):
         """