Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions log_collector/log_collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down Expand Up @@ -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:
Expand Down