L godlike
07/11/2023, 8:07 AMremote = FlyteRemote(config=Config.auto(), \
default_project="flytesnacks", default_domain="development")
execution = remote.execute(wf, \
inputs={"name": "Kermit"},\
image_config=ImageConfig("futureoutlier/flyte-practice:latest"))
flyte_workflow = remote.register_workflow(
entity=flyte_entity,
serialization_settings=SerializationSettings(
image_config=ImageConfig.from_images("futureoutlier/flyte-practice:latest"),
project="flytesnacks",
domain="development",
version="v1" # You need to specify the version here.
),
version="v1",
)
Any clarification would be greatly appreciated. Thank you very much!Kevin Su
07/11/2023, 8:48 AML godlike
07/11/2023, 9:03 AMYee
default_image
in the ImageConfig
dataclass in the comments should also just be removed.L godlike
07/11/2023, 11:59 PM