diff --git a/log_collector/log_collector.py b/log_collector/log_collector.py index 2148084..d0d91aa 100644 --- a/log_collector/log_collector.py +++ b/log_collector/log_collector.py @@ -29,7 +29,7 @@ logger = logging.getLogger(__name__) logger.setLevel(logging.INFO) logging.basicConfig(format='%(asctime)s - %(levelname)s - %(message)s') -VERSION_LOG_COLLECTOR = "6.4.2-4a" +VERSION_LOG_COLLECTOR = "6.4.2-4b" TIME_FORMAT = time.strftime("%Y%m%d-%H%M%S") @@ -689,7 +689,7 @@ def collect_api_resources_description(namespace, output_dir, k8s_cli, api_resour if resource == "Namespace": output = describe_resource(namespace, resource, k8s_cli, resource_name=namespace) elif resource in OPERATOR_CUSTOM_RESOURCES: - output = run_get_resource_yaml(namespace, resource, k8s_cli) + output = describe_resource(namespace, resource, k8s_cli) else: output = describe_resource(namespace, resource, k8s_cli, selector) if output: