]> git.proxmox.com Git - ceph.git/blame - 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
CommitLineData
d2e6a577
FG
1
2# mount flags
3mount = dict(
4 xfs='noatime,inode64',
5)
6
7
8# format flags
9mkfs = dict(
10 xfs=[
11 # force overwriting previous fs
12 '-f',
13 # set the inode size to 2kb
14 '-i', 'size=2048',
15 ],
16)
17