Skip to content

Commit 0b7ba21

Browse files
committed
Fix README and change names based on PR comments
1 parent e85e3e9 commit 0b7ba21

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ helm install my-release marklogic/marklogic --version=1.0.0-ea1 \
221221

222222
We recommend that you use the `values.yaml` file for configuring your installation.
223223

224-
### Logging
224+
### Log Collection
225225

226226
To enable log collection for all Marklogic logs set logCollection.enabled to true. Set each option in logCollection.files to true of false depending on if you want to track each type of Marklogic log file.
227227

@@ -421,8 +421,8 @@ This table describes the list of available parameters for Helm Chart.
421421
| `startupProbe.failureThreshold` | Failure threshold for startup probe | `30` |
422422
| `startupProbe.successThreshold` | Success threshold for startup probe | `1` |
423423
| `logCollection.enabled` | Enable this parameter to enable cluster wide log collection of Marklogic server logs | `false` |
424-
| `logCollection.files.errorLogs` | Enable this parameter to enable collection of Marklogics error logs when cluster level logging is enabled | `true` |
425-
| `logCollection.files.accessLogs` | Enable this parameter to enable collection of Marklogics access logs when cluster level logging is enabled | `true` |
426-
| `logCollection.files.requestLogs` | Enable this parameter to enable collection of Marklogics request logs when cluster level logging is enabled | `true` |
427-
| `logCollection.files.crashLogs` | Enable this parameter to enable collection of Marklogics crash logs when cluster level logging is enabled | `true` |
428-
| `logCollection.files.auditLogs` | Enable this parameter to enable collection of Marklogics audit logs when cluster level logging is enabled | `true` |
424+
| `logCollection.files.errorLogs` | Enable this parameter to enable collection of Marklogics error logs when clog collection is enabled | `true` |
425+
| `logCollection.files.accessLogs` | Enable this parameter to enable collection of Marklogics access logs when log collection is enabled | `true` |
426+
| `logCollection.files.requestLogs` | Enable this parameter to enable collection of Marklogics request logs when log collection is enabled | `true` |
427+
| `logCollection.files.crashLogs` | Enable this parameter to enable collection of Marklogics crash logs when log collection is enabled | `true` |
428+
| `logCollection.files.auditLogs` | Enable this parameter to enable collection of Marklogics audit logs when log collection is enabled | `true` |

test/template/template_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/gruntwork-io/terratest/modules/random"
1414
)
1515

16-
func TestChartTemplateNoLogging(t *testing.T) {
16+
func TestChartTemplateNoLogCollection(t *testing.T) {
1717
t.Parallel()
1818

1919
// Path to the helm chart we will test
@@ -54,7 +54,7 @@ func TestChartTemplateNoLogging(t *testing.T) {
5454
require.Equal(t, statefulSetContainers[0].Image, expectedImage)
5555
}
5656

57-
func TestChartTemplateLogging(t *testing.T) {
57+
func TestChartTemplateLogCollection(t *testing.T) {
5858
t.Parallel()
5959

6060
// Path to the helm chart we will test

0 commit comments

Comments
 (0)