]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/ceph-volume/ceph_volume/devices/raw/common.py
import 15.2.5
[ceph.git] / ceph / src / ceph-volume / ceph_volume / devices / raw / common.py
index d34a2941d1684cc70ec1e5ab9ebf5dc4588a30ad..08cfd02890cb0c7b588fb5f9d3a4d55f897d8415 100644 (file)
@@ -26,10 +26,6 @@ def create_parser(prog, description):
         dest='crush_device_class',
         help='Crush device class to assign this OSD to',
     )
-    parser.add_argument(
-        '--cluster-fsid',
-        help='Specify the cluster fsid, useful when no ceph.conf is available',
-    )
     parser.add_argument(
         '--no-tmpfs',
         action='store_true',
@@ -45,4 +41,9 @@ def create_parser(prog, description):
         dest='block_wal',
         help='Path to bluestore block.wal block device'
     )
+    parser.add_argument(
+        '--dmcrypt',
+        action='store_true',
+        help='Enable device encryption via dm-crypt',
+    )
     return parser