history This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. === List workflows === List all workflows related to a CRD <code> argo list -l workflow.artifakt.io/kind=[kind] -n [ns] </code> List all failed workflows <code> argo list -l workflows.argoproj.io/phase=Failed -n [ns] </code> === Delete Failed workflows === <code> argo delete -l workflows.argoproj.io/phase=Failed -n [ns] argo delete -l workflows.argoproj.io/phase=Failed,workflow.artifakt.io/kind=[kind] -n [ns] </code>