blob: 6982cedfcaba956b049071e1586fd02d65564bf2 (
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
|
# see http://tracker.ceph.com/issues/20360 and http://tracker.ceph.com/issues/18126
os_type: centos
# Valgrind makes everything slow, so ignore slow requests
overrides:
ceph:
log-whitelist:
- slow requests are blocked
overrides:
install:
ceph:
flavor: notcmalloc
debuginfo: true
ceph:
conf:
global:
osd heartbeat grace: 40
mon:
mon osd crush smoke test: false
valgrind:
mon: [--tool=memcheck, --leak-check=full, --show-reachable=yes]
osd: [--tool=memcheck]
mds: [--tool=memcheck]
ceph-fuse:
client.0:
valgrind: [--tool=memcheck, --leak-check=full, --show-reachable=yes]
|