Thomas Blom

Results 8 comments of Thomas Blom

This seems to be what we're discussing in issue #70 as well.

If you are successfully using nested menu entries, will you look at issue #70 and let us know how you're achieving this? (Then maybe we can all think about the...

I am having issues with this as well. I have tried adding a new content file to the exampleSite under content/getting-started, for example (which previously only contained an index.md). In...

Note that [this issue](https://github.com/flyteorg/flyte/issues/2284) talked about very much the same thing -- but the solution was to add this per-execution flag to the web form available on the Flyte Console...

@eapolinario Any thoughts about when this may get attention?

@davidmirror-ops ``` from flytekit import workflow, task, Resources @task(retries=2) def t1() -> int: return 1 @workflow(interruptible=True) def my_wf() -> int: return t1().with_overrides( requests=Resources(cpu="100m", mem="100Mi") ) ``` Here is the output...