-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathvalues.yaml
More file actions
101 lines (89 loc) · 2.35 KB
/
values.yaml
File metadata and controls
101 lines (89 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
replicaCount: 1
image:
registry: quay.io
repository: icdh/core-dump-handler
tag: v9.0.0
pullPolicy: Always
pullSecrets: []
request_mem: "64Mi"
request_cpu: "250m"
limit_mem: "128Mi"
limit_cpu: "500m"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
# Size of the Persistent volume to create
hostStorage: 1Gi
coreStorage: 10Gi
eventStorage: 1Gi
storageClass: hostclass
composer:
ignoreCrio: false
includeProcInfo: false
crioImageCmd: "img"
logLevel: "Warn"
filenameTemplate: "{uuid}-dump-{timestamp}-{hostname}-{exe_name}-{pid}-{signal}"
logLength: 500
podSelectorLabel: ""
timeout: 600
compression: true
coreEvents: false
daemonset:
podAnnotations: {}
name: "core-dump-handler"
label: "core-dump-ds"
labels: {}
hostDirectory: "/var/mnt/core-dump-handler"
coreDirectory: "/var/mnt/core-dump-handler/cores"
eventDirectory: "/var/mnt/core-dump-handler/events"
crioEndpoint: "unix:///run/containerd/containerd.sock"
mountContainerRuntimeEndpoint: false
hostContainerRuntimeEndpoint: "/run/containerd/containerd.sock"
suidDumpable: 2
vendor: default
# interval: 60000
# schedule: "1/1 * * * * *"
useINotify: true
deployCrioConfig: false
includeCrioExe: false
# S3 access
manageStoreSecret: true
s3AccessKey: XXX
s3Secret: XXX
s3BucketName: XXX
s3Region: XXX
extraEnvVars: ""
envFrom: []
sidecarContainers: []
updateStrategy: {}
serviceAccount:
create: true
name: "core-dump-admin"
# annotations:
# eks.amazonaws.com/role-arn: arn:aws:iam::123456789000:role/iam-role-name-here
useToken: false
tokenSecretName: core-dump-service-account-token
# OpenShift specific for SecurityContextConstraints
scc:
create: false
name: "core-dump-admin-privileged"
clusterRole:
name: "core-dump-event-reporter"
clusterRoleBinding:
name: "core-dump-event-report"
# nodeSelector & affinity for the daemonset's pod assignment
# https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/#running-pods-on-select-nodes
nodeSelector: {}
# eg
# gpu-enabled: true
affinity: {}
# priorityClassName for assigning priorityClass to the daemonset pods
priorityClassName:
# Tolerations for the daemonset's pod assignment
# ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: []
# eg
# - key: "key"
# operator: "Equal"
# value: "value"
# effect: "NoSchedule"