We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbc08ec commit 0885090Copy full SHA for 0885090
1 file changed
tools/deployment-cli-tools/ch_cli_tools/codefresh.py
@@ -70,6 +70,7 @@ def check_image_exists(name, image):
70
registry = chunks[0] if "." in chunks[0] else "docker.io"
71
image_name = "/".join(chunks[1::] if "." in chunks[0] else chunks[0::])
72
exists = check_image_exists_in_registry(registry, image_name, tag, endpoint_url=image_cache_endpoint_url)
73
+ logging.info("Image %s exists check: %s", image, exists)
74
if exists:
75
# TODO the hash might be the same but not the parent's hash
76
env[app_specific_tag_variable(name) + "_EXISTS"] = 1
0 commit comments