initial code repo
[stor4nfv.git] / src / ceph / src / ceph-volume / ceph_volume / util / constants.py
diff --git a/src/ceph/src/ceph-volume/ceph_volume/util/constants.py b/src/ceph/src/ceph-volume/ceph_volume/util/constants.py
new file mode 100644 (file)
index 0000000..07df5a4
--- /dev/null
@@ -0,0 +1,17 @@
+
+# mount flags
+mount = dict(
+    xfs='noatime,inode64',
+)
+
+
+# format flags
+mkfs = dict(
+    xfs=[
+        # force overwriting previous fs
+        '-f',
+        # set the inode size to 2kb
+        '-i', 'size=2048',
+    ],
+)
+