File tree Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -311,6 +311,7 @@ Composer
311
311
* podSelectorLabel: Enable composer only if pod has label matching the specified selector. (Default "" matches all pods)
312
312
313
313
Daemonset
314
+ * podAnnotations: Annotations to be added to core-dump-handler pods (Default nil)
314
315
* hostDirectory: Maps to the HOST_DIR environment variable (Default "/var/mnt/core-dump-handler")
315
316
* coreDirectory: Maps to the CORE_DIR environment variable (Default "/var/mnt/core-dump-handler/cores")
316
317
* eventDirectory: Maps to the EVENT_DIR environment variable (Default "/var/mnt/core-dump-handler/events")
Original file line number Diff line number Diff line change 16
16
name : {{ .Values.daemonset.label }}
17
17
annotations :
18
18
kubectl.kubernetes.io/default-container : " coredump-container"
19
+ {{- with .Values.daemonset.podAnnotations }}
20
+ {{- toYaml . | nindent 8 }}
21
+ {{- end }}
19
22
spec :
20
23
{{- with .Values.image.pullSecrets }}
21
24
imagePullSecrets :
Original file line number Diff line number Diff line change 209
209
"label" : {
210
210
"type" : " string"
211
211
},
212
+ "podAnnotations" : {
213
+ "type" : " object" ,
214
+ "additionalProperties" : {
215
+ "type" : " string"
216
+ }
217
+ },
212
218
"hostDirectory" : {
213
219
"type" : " string"
214
220
},
346
352
"title" : " ServiceAccount"
347
353
}
348
354
}
349
- }
355
+ }
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ composer:
34
34
coreEvents : false
35
35
36
36
daemonset :
37
+ podAnnotations : {}
37
38
name : " core-dump-handler"
38
39
label : " core-dump-ds"
39
40
hostDirectory : " /var/mnt/core-dump-handler"
You can’t perform that action at this time.
0 commit comments