diff --git a/constants.py b/constants.py index 1d35b58d..2db48cf3 100644 --- a/constants.py +++ b/constants.py @@ -1,4 +1,4 @@ -from naeural_core.constants import ADMIN_PIPELINE, ADMIN_PIPELINE_FILTER +from naeural_core.constants import ADMIN_PIPELINE, ADMIN_PIPELINE_FILTER, ADMIN_PIPELINE_EXCLUSIONS ADMIN_PIPELINE_FILTER = [ @@ -7,6 +7,12 @@ ] +# to be used by config-manager +ADMIN_PIPELINE_EXCLUSIONS = [ + *ADMIN_PIPELINE_EXCLUSIONS, + "MINIO_MONIT_01" +] + ADMIN_PIPELINE = { **ADMIN_PIPELINE, diff --git a/ver.py b/ver.py index 735af3c1..811180ae 100644 --- a/ver.py +++ b/ver.py @@ -1,2 +1,2 @@ -__VER__ = '2.9.520' +__VER__ = '2.9.560'