Update zunclient about image_search

Add parameter to supporting search image accurately

Change-Id: I72630689913a5d656b98f350453de3a4e3e5660f
Signed-off-by: pengdake <19921207pq@gmail.com>
This commit is contained in:
pengdake 2018-02-02 22:55:39 +08:00
parent 2f77408bcf
commit 755f0a3508
3 changed files with 12 additions and 1 deletions

View File

@ -107,6 +107,11 @@ class SearchImage(command.Lister):
'image_name',
metavar='<image_name>',
help='Name of the image')
parser.add_argument(
'--exact-match',
default=False,
action='store_true',
help='exact match image name')
return parser
def take_action(self, parsed_args):
@ -114,6 +119,7 @@ class SearchImage(command.Lister):
opts = {}
opts['image_driver'] = parsed_args.image_driver
opts['image'] = parsed_args.image_name
opts['exact_match'] = parsed_args.exact_match
opts = zun_utils.remove_null_parms(**opts)
images = client.images.search_image(**opts)
columns = ('ID', 'Name', 'Tags', 'Status', 'Size', 'Metadata')

View File

@ -16,7 +16,7 @@ from zunclient import exceptions
PULL_ATTRIBUTES = ['repo']
IMAGE_SEARCH_ATTRIBUTES = ['image', 'image_driver']
IMAGE_SEARCH_ATTRIBUTES = ['image', 'image_driver', 'exact_match']
class Image(base.Resource):

View File

@ -73,11 +73,16 @@ def do_image_show(cs, args):
metavar='<image-driver>',
choices=['glance', 'docker'],
help='Name of the image driver (glance, docker)')
@utils.arg('--exact-match',
default=False,
action='store_true',
help='exact match image name')
def do_image_search(cs, args):
"""Print list of available images from repository based on user query."""
opts = {}
opts['image'] = args.image
opts['image_driver'] = args.image_driver
opts['exact_match'] = args.exact_match
images = cs.images.search_image(**opts)
columns = ('ID', 'Name', 'Tags', 'Status', 'Size', 'Metadata')
utils.print_list(images, columns,