Keqiu Hu
07/05/2023, 7:19 PMflytekit
, after validating locally, what is the easiest way to test that in cluster mode (--remote) besides updating the image?Kevin Su
07/06/2023, 1:13 AMfrom flytekit import task, workflow
from flytekit.image_spec import ImageSpec
new_flytekit = "git+<https://github.com/flyteorg/flytekit@8c7c43ad310ec74b4e8c06c2b4604b6cb9692f86>"
image_spec = ImageSpec(packages=[new_flytekit], registry="pingsutw", apt_packages=["git"])
@task(container_image=image_spec)
def t1():
print("hello")