diff --git a/test-frame-log-collector/README.md b/test-frame-log-collector/README.md index 6a5a72e..da3d56f 100644 --- a/test-frame-log-collector/README.md +++ b/test-frame-log-collector/README.md @@ -148,7 +148,7 @@ import io.skodjob.testframe.LogCollector; import io.skodjob.testframe.LogCollectorBuilder; LogCollector logCollector = new LogCollectorBuilder() - .withClusterWideResources("node", "pv") + .withClusterWideResources("nodes", "pvs") .withRootFolderPath("/path/to/logs/folder") .build(); @@ -160,9 +160,12 @@ the logs path will then look like this: ```bash /path/to/logs/folder └── cluster-wide-resources - └── nodes - ├── node1.yaml - └── node2.yaml + ├── nodes + │ ├── node1.yaml + │ └── node2.yaml + └── pvs + ├── pv1.yaml + └── pv2.yaml ``` The tree path will look similarly to above examples, there will be folders for Namespaces matching the specified labels.