Enable coredumps for e2e tests

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-06-01 19:17:30 -04:00
parent c8e00d0e5c
commit 7ca2019039

View file

@ -81,8 +81,18 @@ controller:
admissionWebhooks:
enabled: false
defaultBackend:
enabled: false
# ulimit -c unlimited
# 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:
create: true