blob: 930872fc7aaa96288c4471ea7ffce5279f9bc65f (
plain)
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
|
overrides:
install:
ceph:
debuginfo: true
ceph:
# Valgrind makes everything slow, so ignore slow requests and extend heartbeat grace
log-ignorelist:
- slow request
- SLOW_OPS
- MON_DOWN
conf:
global:
osd heartbeat grace: 60
mds heartbeat grace: 60
mds beacon grace: 60
mds:
mds valgrind exit: true
mon:
mon osd crush smoke test: false
osd:
osd fast shutdown: false
valgrind:
mon: [--tool=memcheck, --leak-check=full, --show-reachable=yes]
mds: [--tool=memcheck]
watchdog:
daemon_restart: normal
ceph-fuse:
client.0:
valgrind: [--tool=memcheck, --leak-check=full, --show-reachable=yes]
|