Alex Collins

Results 470 comments of Alex Collins

```java public static final Collector TDIGEST_COLLECTOR = Collector.of( () -> TDigest.createDigest(100), TDigest::add, ( digest1, digest2) -> { digest1.add(digest2); return digest1; } ); ````

I’ll happily submit a pull request to help fix this if: 1. You can give me a few pointers at to which files I should look at to fix it....

A plugin outside the controller namespace is a user plugin. In many set ups, the users cannot modify the controller because they only have access to their own namespace. Loading...

This seems odd to me too. Agents are part of the workflow, not part of the control-plane, so should run using the service account of the workflow.

This is unlikely to be developed by the core team at this time - it is a perfect piece of work for community contribution.

I wonder if a transpiler from CWS to Argo YAML would solve this.

Would anyone watching this issue like to pick this up?

Tangential, but Argo Workflows will support this in v3.4

The markdown is a good start. I get why they did it. Allowing arbitrary HTML in a brower results a Github Action being able to XSS github.com. They would need...