From f06b5ec6a21f48bf988ec57d9240d23df3c4ba04 Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Fri, 23 Feb 2024 18:02:11 -0600 Subject: [PATCH] Remote tag check --- stack_orchestrator/deploy/images.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/stack_orchestrator/deploy/images.py b/stack_orchestrator/deploy/images.py index bf322656..78fe6204 100644 --- a/stack_orchestrator/deploy/images.py +++ b/stack_orchestrator/deploy/images.py @@ -33,12 +33,9 @@ def remote_image_exists(local_tag: str, remote_repo_url: str): docker = DockerClient() try: remote_tag = remote_tag_for_image(local_tag, remote_repo_url) - print(f"local tag: {local_tag} ; remote tag: {remote_tag}") result = docker.manifest.inspect(remote_tag) - print(result) return True if result else False except Exception as e: # noqa: E722 - print(e) return False