Enable coredumps for e2e tests
This commit is contained in:
parent
d061375afa
commit
810acfafbe
1 changed files with 12 additions and 2 deletions
|
@ -81,8 +81,18 @@ controller:
|
||||||
admissionWebhooks:
|
admissionWebhooks:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
defaultBackend:
|
# ulimit -c unlimited
|
||||||
enabled: false
|
# mkdir -p /tmp/coredump
|
||||||
|
# chmod a+rwx /tmp/coredump
|
||||||
|
# echo "/tmp/coredump/core.%e.%p.%h.%t" > /proc/sys/kernel/core_pattern
|
||||||
|
extraVolumeMounts:
|
||||||
|
- name: coredump
|
||||||
|
mountPath: /tmp/coredump
|
||||||
|
|
||||||
|
extraVolumes:
|
||||||
|
- name: coredump
|
||||||
|
hostPath:
|
||||||
|
path: /tmp/coredump
|
||||||
|
|
||||||
rbac:
|
rbac:
|
||||||
create: true
|
create: true
|
||||||
|
|
Loading…
Reference in a new issue