summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulia Kreger <juliaashleykreger@gmail.com>2017-12-07 17:43:24 -0500
committerJulia Kreger <juliaashleykreger@gmail.com>2017-12-07 17:43:24 -0500
commitcc767bb8c5ca67b80a94f357d0bdf141792c52d6 (patch)
treeb941a19202fdc6890d15e29558d8593a6521aa47
parent0d4d2f0d64d34b3694bf067ef2af7aa8e5957c0d (diff)
downloadpython-ironicclient-cc767bb8c5ca67b80a94f357d0bdf141792c52d6.tar.gz
Remove RBD examples
RBD support was not part of BFV support, as booting using a ceph block device was removed from the specification for BFV as it is highly ramdisk dependent and support for booting from such devices is unlikely to ever land in some of the available ramdisk boot tools, muchless ironic or integrated tooling. Change-Id: I9ddea3ae691240524aa6b946e1a513104a3f7113
-rw-r--r--ironicclient/osc/v1/baremetal_volume_target.py8
-rw-r--r--ironicclient/v1/volume_target_shell.py2
2 files changed, 5 insertions, 5 deletions
diff --git a/ironicclient/osc/v1/baremetal_volume_target.py b/ironicclient/osc/v1/baremetal_volume_target.py
index 9be5c7d..7940e48 100644
--- a/ironicclient/osc/v1/baremetal_volume_target.py
+++ b/ironicclient/osc/v1/baremetal_volume_target.py
@@ -44,8 +44,8 @@ class CreateBaremetalVolumeTarget(command.ShowOne):
dest='volume_type',
metavar="<volume type>",
required=True,
- help=_("Type of the volume target, e.g. 'iscsi', 'fibre_channel', "
- "'rbd'."))
+ help=_("Type of the volume target, e.g. 'iscsi', "
+ "'fibre_channel'."))
parser.add_argument(
'--property',
dest='properties',
@@ -295,8 +295,8 @@ class SetBaremetalVolumeTarget(command.Command):
'--type',
dest='volume_type',
metavar="<volume type>",
- help=_("Type of the volume target, e.g. 'iscsi', 'fibre_channel', "
- "'rbd'."))
+ help=_("Type of the volume target, e.g. 'iscsi', "
+ "'fibre_channel'."))
parser.add_argument(
'--property',
dest='properties',
diff --git a/ironicclient/v1/volume_target_shell.py b/ironicclient/v1/volume_target_shell.py
index 4d145e6..fd9d486 100644
--- a/ironicclient/v1/volume_target_shell.py
+++ b/ironicclient/v1/volume_target_shell.py
@@ -142,7 +142,7 @@ def do_volume_target_list(cc, args):
'-t', '--type',
metavar="<volume type>",
required=True,
- help=_("Type of the volume target, e.g. 'iscsi', 'fibre_channel', 'rbd'."))
+ help=_("Type of the volume target, e.g. 'iscsi', 'fibre_channel'."))
@cliutils.arg(
'-p', '--properties',
metavar="<key=value>",