Enable coredumps for e2e tests

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-06-01 19:17:30 -04:00
parent d061375afa
commit 810acfafbe

View file

@ -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