docker: support polling image by digest (#2932)
This commit is contained in:
parent
a39d11e8f5
commit
1c3071af61
1 changed files with 7 additions and 7 deletions
|
@ -585,13 +585,13 @@ def get_split_image_tag(image):
|
|||
else:
|
||||
registry, resource = None, image
|
||||
|
||||
# now we can determine if image has a tag
|
||||
if ':' in resource:
|
||||
resource, tag = resource.split(':', 1)
|
||||
if registry:
|
||||
resource = '/'.join((registry, resource))
|
||||
if tag == "":
|
||||
tag = "latest"
|
||||
# now we can determine if image has a tag or a digest
|
||||
for s in ['@',':']:
|
||||
if s in resource:
|
||||
resource, tag = resource.split(s, 1)
|
||||
if registry:
|
||||
resource = '/'.join((registry, resource))
|
||||
break
|
||||
else:
|
||||
tag = "latest"
|
||||
resource = image
|
||||
|
|
Loading…
Reference in a new issue