damp-lion-88352
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!glamorous-carpet-83516
07/11/2023, 8:48 AMdamp-lion-88352
07/11/2023, 9:03 AMdamp-lion-88352
07/11/2023, 9:32 AMthankful-minister-83577
thankful-minister-83577
thankful-minister-83577
default_image
in the ImageConfig
dataclass in the comments should also just be removed.damp-lion-88352
07/11/2023, 11:59 PMdamp-lion-88352
07/12/2023, 7:05 AM