Anton Gilgur
Anton Gilgur
Huh since it already finished, that should've actually short-circuited the changed code here 🤔 > lmk if you want to test in the Bunnyshell instance, I can send you the...
> Everything looks good except maybe the sync operation panel. Looks like the duration is missing there. Oh, this is an edge case: it's a 0 second duration apparently. I...
No wait, the new logic (or well, newly switched to logic, the logic itself is still old) handles the `0` case [as well](https://github.com/argoproj/argo-ui/blob/e76346fdd7f26f596e9bec4404fe251a5449bbf1/v2/utils/utils.tsx#L109). 🤔
Oh, I think this will be fixed by https://github.com/argoproj/argo-ui/pull/577 as well; the `0` edge case causes the parameter into `formatDuration` to be a little wacky due to the backward-compatible `||`:...
Now that https://github.com/argoproj/argo-ui/pull/577 has been merged, I've updated the code here as well
> there is workaround: You can also use the [Workflow of Workflows pattern](https://argo-workflows.readthedocs.io/en/release-3.5/workflow-of-workflows/) with a wrapper Workflow to do something similar. That's potentially the easiest way to do it with...
Discussed this a bit [over Slack](https://cloud-native.slack.com/archives/C01QW9QSSSK/p1692636603078599?thread_ts=1692543415.036869&cid=C01QW9QSSSK) yesterday and one (potentially simple) implementation option would be to have the `resource` step link to the new Workflow. This would be similar to...
Linking was also suggested in https://github.com/argoproj/argo-workflows/issues/4238#issuecomment-705762233. > Workflows does already have [custom links](https://argoproj.github.io/argo-workflows/links/) available for various pages/scopes I am wondering if the Pod scope may actually cover this as a...
This is currently [breaking CI on `main`](https://github.com/argoproj/argo-workflows/actions/runs/11237353984/job/31239602517) and failing other PRs and releases as a result: https://github.com/argoproj/argo-workflows/pull/13728#issuecomment-2400849372
> Almost all of my attempts to do retries on [coinflip-recursive](https://github.com/argoproj/argo-workflows/blob/v3.5.11/examples/coinflip-recursive.yaml) result in a broken workflow. > @isubasinghe is working on the problematic retry cases we found, but they're not...