-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support rendering recursive static DAGs (#845)
* Adds support for rendering recursive pipelines to the StaticGraphParser * Adds a recursive pipeline to the list of mocks * Fixes recursive graph rendering under new styling * Adds additional comments and surfaces pipeline yaml error to users * Remove unnecessary comment
- Loading branch information
1 parent
4ad96e6
commit 85de728
Showing
6 changed files
with
346 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Workflow | ||
metadata: | ||
generateName: entry-point-test- | ||
spec: | ||
arguments: | ||
parameters: [] | ||
entrypoint: entry-point-test | ||
templates: | ||
- dag: | ||
tasks: | ||
- name: recurse-1 | ||
template: recurse-1 | ||
- name: leaf-1 | ||
template: leaf-1 | ||
name: start | ||
- dag: | ||
tasks: | ||
- name: start | ||
template: start | ||
- name: recurse-2 | ||
template: recurse-2 | ||
name: recurse-1 | ||
- dag: | ||
tasks: | ||
- name: start | ||
template: start | ||
- name: leaf-2 | ||
template: leaf-2 | ||
- name: recurse-3 | ||
template: recurse-3 | ||
name: recurse-2 | ||
- dag: | ||
tasks: | ||
- name: start | ||
template: start | ||
- name: recurse-1 | ||
template: recurse-1 | ||
- name: recurse-2 | ||
template: recurse-2 | ||
name: recurse-3 | ||
- dag: | ||
tasks: | ||
- name: start | ||
template: start | ||
name: entry-point-test | ||
- container: | ||
name: leaf-1 | ||
- container: | ||
name: leaf-2 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.