cool-lifeguard-49380
07/24/2024, 10:56 AM"demo"
going from flytekit 1.12 to 1.13?
We have a custom registration/launch script which sets options = Options.default_from(k8s_service_account="", raw_data_prefix="")
and suddenly see executions with a non-existing "demo"
sa. Fixed by explicitly configuring the "default"
account but I wonder where this changed - but in a quick search I couldn’t find where. 🤔freezing-airport-6809
freezing-airport-6809
freezing-airport-6809
cool-lifeguard-49380
07/24/2024, 2:04 PM"demo"
is set unfortunatelycool-lifeguard-49380
07/24/2024, 2:04 PM"default"
again in our registration script.high-accountant-32689
07/24/2024, 2:04 PMcool-lifeguard-49380
07/24/2024, 2:05 PMhigh-accountant-32689
07/24/2024, 2:49 PMcreate
or get_or_create
in your script and double check what's being passed there?cool-lifeguard-49380
07/24/2024, 5:50 PMfrom flytekit import task, workflow
@task
def foo():
...
@workflow
def my_wf():
foo()
This simple example is enough for me but I do see it now with flytekit 1.12 or 11 so I think this is something on my side even though I don’t understand it at this point.
Please excuse the false alarm 🙇high-accountant-32689
07/24/2024, 7:08 PM