Alex Collins
Alex Collins
What about using data template with S3? That allows you to drop a number of artifacts into a bucket, then use `withItems` to fan-out process them. https://argoproj.github.io/argo-workflows/data-sourcing-and-transformation/
I think that is not what data template does. It basically allows you to list artifacts, and then start a new process for each artifact.
I'm not sure why `WorkflowTaskSet` is relevant. I think this is a good idea, but not MVP.
The lack of Dex is intentional. There is no coupling between workflows and Dex (unlike Argo CD). You don't need Dex for many OAuth2 providers. If you do, you need...
For Github, use Dex. https://github.com/argoproj/argoproj-deployments/tree/master/dex
No. You can look at this: https://github.com/argoproj/argoproj-deployments
How about we manage namespaces based on labels? ``` kind: Namespace metadata: name: my-ns labels: workflows.argoproj.io/managed-namespace: "true" ```
I think this can also be achieved by using instance ID.
Could you add a problem statement or use case please?
Let me play this back so I understand correctly. This auth method allows you to interact with Argo Server without knowing the value K8s auth token. Rather than passing the...