]> git.proxmox.com Git - ceph.git/blob - ceph/src/ceph-volume/ceph_volume/util/constants.py
update sources to v12.1.3
[ceph.git] / ceph / src / ceph-volume / ceph_volume / util / constants.py
1
2 # mount flags
3 mount = dict(
4 xfs='noatime,inode64',
5 )
6
7
8 # format flags
9 mkfs = dict(
10 xfs=[
11 # force overwriting previous fs
12 '-f',
13 # set the inode size to 2kb
14 '-i', 'size=2048',
15 ],
16 )
17