File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 32
32
- [ Port Forward] ( #port-forward )
33
33
- [ Forward to Pod] ( #forward-to-pod )
34
34
- [ Forward to Service] ( #forward-to-service )
35
+ - [ Security Context] ( #security-context )
36
+ - [ Network Policy] ( #network-policy )
37
+ - [ Pod Priorty] ( #pod-priorty )
35
38
- [ Notice] ( #notice )
36
39
- [ Uninstalling the Chart] ( #uninstalling-thechart )
37
40
- [ Parameters] ( #parameters )
38
- - [ Known Issues and Limitations] ( #Known-Issues -and-Limitations )
41
+ - [ Known Issues and Limitations] ( #known-issues -and-limitations )
39
42
40
43
41
44
# Introduction
@@ -476,7 +479,6 @@ This table describes the list of available parameters for Helm Chart.
476
479
| ` persistence.size ` | Size of storage request for MarkLogic data volume | ` 10Gi ` |
477
480
| ` persistence.annotations ` | Annotations for Persistence Volume Claim (PVC) | ` {} ` |
478
481
| ` persistence.accessModes ` | Access mode for persistence volume | ` ["ReadWriteOnce"] ` |
479
- | ` persistence.mountPath ` | The path for the mounted persistence data volume | ` /var/opt/MarkLogic ` |
480
482
| ` extraVolumes ` | Extra list of additional volumes for MarkLogic statefulset | ` [] ` |
481
483
| ` extraVolumeMounts ` | Extra list of additional volumeMounts for MarkLogic container | ` [] ` |
482
484
| ` extraContainerPorts ` | Extra list of additional containerPorts for MarkLogic container | ` [] ` |
Original file line number Diff line number Diff line change 39
39
{{- if .Values.logCollection.files.errorLogs }}
40
40
[INPUT]
41
41
Name tail
42
- Path {{ .Values.persistence.mountPath }} /Logs/*ErrorLog.txt
42
+ Path /var/opt/MarkLogic /Logs/*ErrorLog.txt
43
43
Read_from_head true
44
44
Tag kube.marklogic.logs.error
45
45
Path_Key path
50
50
{{- if .Values.logCollection.files.accessLogs }}
51
51
[INPUT]
52
52
Name tail
53
- Path {{ .Values.persistence.mountPath }} /Logs/*AccessLog.txt
53
+ Path /var/opt/MarkLogic /Logs/*AccessLog.txt
54
54
Read_from_head true
55
55
tag kube.marklogic.logs.access
56
56
Path_Key path
61
61
{{- if .Values.logCollection.files.requestLogs }}
62
62
[INPUT]
63
63
Name tail
64
- Path {{ .Values.persistence.mountPath }} /Logs/*RequestLog.txt
64
+ Path /var/opt/MarkLogic /Logs/*RequestLog.txt
65
65
Read_from_head true
66
66
tag kube.marklogic.logs.request
67
67
Path_Key path
72
72
{{- if .Values.logCollection.files.crashLogs }}
73
73
[INPUT]
74
74
Name tail
75
- Path {{ .Values.persistence.mountPath }} /Logs/CrashLog.txt
75
+ Path /var/opt/MarkLogic /Logs/CrashLog.txt
76
76
Read_from_head true
77
77
tag kube.marklogic.logs.crash
78
78
Path_Key path
82
82
{{- if .Values.logCollection.files.auditLogs }}
83
83
[INPUT]
84
84
Name tail
85
- Path {{ .Values.persistence.mountPath }} /Logs/AuditLog.txt
85
+ Path /var/opt/MarkLogic /Logs/AuditLog.txt
86
86
Read_from_head true
87
87
tag kube.marklogic.logs.audit
88
88
Path_Key path
Original file line number Diff line number Diff line change 93
93
imagePullPolicy : {{ .Values.image.pullPolicy}}
94
94
volumeMounts :
95
95
- name : datadir
96
- mountPath : {{ .Values.persistence.mountPath }}
96
+ mountPath : /var/opt/MarkLogic
97
97
{{- if .Values.extraVolumeMounts }}
98
98
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
99
99
{{- end }}
@@ -268,7 +268,7 @@ spec:
268
268
imagePullPolicy : IfNotPresent
269
269
volumeMounts :
270
270
- name : datadir
271
- mountPath : {{ .Values.persistence.mountPath }}
271
+ mountPath : /var/opt/MarkLogic
272
272
{{- if .Values.extraVolumeMounts }}
273
273
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
274
274
{{- end }}
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ persistence:
91
91
annotations : {}
92
92
accessModes :
93
93
- ReadWriteOnce
94
- mountPath : /var/opt/MarkLogic
95
94
96
95
# specify extra list of volumes
97
96
extraVolumes : []
You can’t perform that action at this time.
0 commit comments