We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6397628 commit c580437Copy full SHA for c580437
scripts/circleci-jobs/setup-integration-tests.py
@@ -14,7 +14,7 @@
14
image_tag = "staging-candidate"
15
else:
16
image_tag = "discardable"
17
-circle_sha1 = os.getenv("CIRCLE_SHA1")
+circle_sha1 = os.getenv("CIRCLE_SHA1") if image_tag_suffix == '' else os.getenv("CIRCLE_SHA1")[0:8]
18
kubernetes_monitor_image_name_and_tag = "snyk/kubernetes-monitor:" + image_tag + image_tag_suffix + "-" + circle_sha1
19
20
subprocess.getoutput("docker pull " + kubernetes_monitor_image_name_and_tag)
0 commit comments