From 1c44a1a26e52ab1d5143ba93d18ac605bb97f3f0 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 10 Oct 2019 14:09:33 -0400 Subject: [PATCH] Revert "Add base CLI for deploy image section" This reverts commit f918058e6ec3dd72a2a2f1857d013de1aaac751a. --- client-cli/pvc.py | 45 --------------------------------------------- 1 file changed, 45 deletions(-) diff --git a/client-cli/pvc.py b/client-cli/pvc.py index bc426497..efa73fdd 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -1713,46 +1713,6 @@ def deploy_image(): """ pass -############################################################################### -# pvc deploy image create -############################################################################### -@click.group(name='create', short_help='Create VM disk image from volume.', context_settings=CONTEXT_SETTINGS) -def deploy_image_create(): - """ - Create a disk image from an existing RBD volume. - """ - pass - -############################################################################### -# pvc deploy image upload -############################################################################### -@click.group(name='upload', short_help='Upload VM disk image from file.', context_settings=CONTEXT_SETTINGS) -def deploy_image_upload(): - """ - Create a disk image from a file. - """ - pass - -############################################################################### -# pvc deploy image remove -############################################################################### -@click.group(name='remove', short_help='Remove VM disk image.', context_settings=CONTEXT_SETTINGS) -def deploy_image_remove(): - """ - Remove a disk image from the cluster. - """ - pass - -############################################################################### -# pvc deploy image list -############################################################################### -@click.group(name='list', short_help='List VM disk images.', context_settings=CONTEXT_SETTINGS) -def deploy_image_list(): - """ - List VM disk images in the PVC cluster. - """ - pass - ############################################################################### # pvc deploy template ############################################################################### @@ -1950,11 +1910,6 @@ cli_ceph.add_command(ceph_volume) cli_storage.add_command(cli_ceph) -deploy_image.add_command(deploy_image_create) -deploy_image.add_command(deploy_image_upload) -deploy_image.add_command(deploy_image_remove) -deploy_image.add_command(deploy_image_list) - cli_deploy.add_command(deploy_image) cli_deploy.add_command(deploy_template) cli_deploy.add_command(deploy_script)