👋 hi folks….Is there a way to override the resources for a particular step? For example if I have step that I need lots of CPU for, but it’s dependent on my input. And I don’t want to set the CPUs for all the steps. Could I do…..
@resources(cpu=os.getenv("CPU", 1))
@step
def expensive_step(self):
pass
Thank you!